Changes in kernel/generic/include/proc/task.h [faec9fc:908bb96] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/include/proc/task.h
rfaec9fc r908bb96 43 43 #include <synch/mutex.h> 44 44 #include <synch/futex.h> 45 #include <synch/workqueue.h>46 45 #include <adt/avl.h> 47 46 #include <adt/btree.h> 48 #include <adt/cht.h>49 47 #include <adt/list.h> 50 48 #include <security/cap.h> … … 59 57 #include <mm/as.h> 60 58 #include <abi/sysinfo.h> 61 #include <arch.h>62 63 #define TASK THE->task64 65 59 66 60 struct thread; … … 129 123 task_arch_t arch; 130 124 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; 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; 140 132 141 133 /** Accumulated accounting. */
Note:
See TracChangeset
for help on using the changeset viewer.