summaryrefslogtreecommitdiffhomepage
path: root/pkg/sentry/kernel/task.go
diff options
context:
space:
mode:
authorgVisor bot <gvisor-bot@google.com>2020-07-24 00:45:45 +0000
committergVisor bot <gvisor-bot@google.com>2020-07-24 00:45:45 +0000
commit4d5f3fb1a454d4421414a355ff94276e1d6e0fdc (patch)
treef478fe5be3ec585fb919ac2541f274ce470ad7fc /pkg/sentry/kernel/task.go
parent889487928af61ef0544f8bec6c3d35fd423905c3 (diff)
parent4ec351633206fdbd191bc3aef29a007925a731cc (diff)
Merge release-20200622.1-207-g4ec351633 (automated)
Diffstat (limited to 'pkg/sentry/kernel/task.go')
-rw-r--r--pkg/sentry/kernel/task.go4
1 files changed, 4 insertions, 0 deletions
diff --git a/pkg/sentry/kernel/task.go b/pkg/sentry/kernel/task.go
index b3d655b6e..c4db05bd8 100644
--- a/pkg/sentry/kernel/task.go
+++ b/pkg/sentry/kernel/task.go
@@ -565,6 +565,10 @@ type Task struct {
// futexWaiter is exclusive to the task goroutine.
futexWaiter *futex.Waiter `state:"nosave"`
+ // robustList is a pointer to the head of the tasks's robust futex
+ // list.
+ robustList usermem.Addr
+
// startTime is the real time at which the task started. It is set when
// a Task is created or invokes execve(2).
//