Changes in kernel/generic/include/proc/task.h [908bb96:faec9fc] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/include/proc/task.h
r908bb96 rfaec9fc 43 43 #include <synch/mutex.h> 44 44 #include <synch/futex.h> 45 #include <synch/workqueue.h> 45 46 #include <adt/avl.h> 46 47 #include <adt/btree.h> 48 #include <adt/cht.h> 47 49 #include <adt/list.h> 48 50 #include <security/cap.h> … … 57 59 #include <mm/as.h> 58 60 #include <abi/sysinfo.h> 61 #include <arch.h> 62 63 #define TASK THE->task 64 59 65 60 66 struct thread; … … 123 129 task_arch_t arch; 124 130 125 /** 126 * Serializes access to the B+tree of task's futexes. This mutex is 127 * independent on the task spinlock. 128 */ 129 mutex_t futexes_lock; 130 /** B+tree of futexes referenced by this task. */ 131 btree_t futexes; 131 struct futex_cache { 132 /** CHT mapping virtual addresses of futex variables to futex objects.*/ 133 cht_t ht; 134 /** Serializes access to futex_list.*/ 135 SPINLOCK_DECLARE(list_lock); 136 /** List of all futexes accesses by this task. */ 137 list_t list; 138 work_t destroy_work; 139 } *futexes; 132 140 133 141 /** Accumulated accounting. */
Note:
See TracChangeset
for help on using the changeset viewer.