Changes in kernel/generic/src/proc/task.c [ac9e79d:88cc71c0] in mainline
- File:
-
- 1 edited
-
kernel/generic/src/proc/task.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/src/proc/task.c
rac9e79d r88cc71c0 64 64 IRQ_SPINLOCK_INITIALIZE(tasks_lock); 65 65 66 /** Ordered dictionary of active tasks. 66 /** Ordered dictionary of active tasks by task ID. 67 * 68 * Members are task_t structures. 67 69 * 68 70 * The task is guaranteed to exist after it was found in the @c tasks … … 252 254 futex_task_init(task); 253 255 256 /* 257 * Get a reference to the address space. 258 */ 259 as_hold(task->as); 260 254 261 irq_spinlock_lock(&tasks_lock, true); 255 262
Note:
See TracChangeset
for help on using the changeset viewer.
