Changeset 58775d30 in mainline for kernel/generic/include/proc/task.h
- Timestamp:
- 2015-03-16T16:07:21Z (10 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 2003739
- Parents:
- 6069061 (diff), 795e2bf (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/include/proc/task.h
r6069061 r58775d30 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.