Changes in kernel/generic/include/proc/task.h [0b5203b:aae365bc] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/include/proc/task.h
r0b5203b raae365bc 42 42 #include <synch/spinlock.h> 43 43 #include <synch/mutex.h> 44 #include <synch/futex.h> 44 45 #include <adt/list.h> 45 46 #include <adt/odict.h> … … 127 128 task_arch_t arch; 128 129 130 /** Serializes access to futex_list.*/ 131 SPINLOCK_DECLARE(futex_list_lock); 132 /** List of all futexes accesses by this task. */ 133 list_t futex_list; 134 129 135 /** Accumulated accounting. */ 130 136 uint64_t ucycles;
Note:
See TracChangeset
for help on using the changeset viewer.