Changeset 7f6e755 in mainline for generic/include/proc/task.h
- Timestamp:
- 2006-04-09T15:33:38Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 602c9101
- Parents:
- 016acbe
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
generic/include/proc/task.h
r016acbe r7f6e755 32 32 #include <typedefs.h> 33 33 #include <synch/spinlock.h> 34 #include <adt/btree.h> 34 35 #include <adt/list.h> 35 36 #include <ipc/ipc.h> … … 40 41 char *name; 41 42 link_t th_head; /**< List of threads contained in this task. */ 42 link_t tasks_link; /**< Link to other tasks within the system. */43 43 as_t *as; /**< Address space. */ 44 task_id_t taskid; 44 task_id_t taskid; /**< Unique identity of task */ 45 45 46 46 /* IPC stuff */ … … 51 51 52 52 extern spinlock_t tasks_lock; 53 extern link_t tasks_head;53 extern btree_t tasks_btree; 54 54 55 55 extern void task_init(void);
Note:
See TracChangeset
for help on using the changeset viewer.