Changeset ea7890e7 in mainline for kernel/generic/include/proc/task.h
- Timestamp:
- 2007-06-01T15:47:46Z (18 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 07be3c4
- Parents:
- ff3a34b
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/include/proc/task.h
rff3a34b rea7890e7 65 65 66 66 char *name; 67 /** Pointer to the main thread. */68 struct thread *main_thread;69 67 /** List of threads contained in this task. */ 70 68 link_t th_head; … … 76 74 context_id_t context; 77 75 78 /** If this is true, new threads can become part of the task. */79 bool accept_new_threads;80 76 /** Number of references (i.e. threads). */ 81 count_t refcount; 77 atomic_t refcount; 78 /** Number of threads that haven't exited yet. */ 79 atomic_t lifecount; 82 80 83 81 /** Task capabilities. */ … … 123 121 extern cap_t cap_get(task_t *t); 124 122 125 126 123 #ifndef task_create_arch 127 124 extern void task_create_arch(task_t *t);
Note:
See TracChangeset
for help on using the changeset viewer.