Changeset 20d50a1 in mainline for generic/include/proc/task.h
- Timestamp:
- 2006-01-13T13:02:45Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- f9425006
- Parents:
- 0369911
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
generic/include/proc/task.h
r0369911 r20d50a1 34 34 #include <list.h> 35 35 36 /** Task structure. */ 36 37 struct task { 37 38 SPINLOCK_DECLARE(lock); 38 39 link_t th_head; /**< List of threads contained in this task. */ 39 40 link_t tasks_link; /**< Link to other tasks within the system. */ 40 vm_t *vm;41 as_t *as; /**< Address space. */ 41 42 }; 42 43 … … 45 46 46 47 extern void task_init(void); 47 extern task_t *task_create( vm_t *m);48 extern task_t *task_create(as_t *as); 48 49 49 50 #endif
Note:
See TracChangeset
for help on using the changeset viewer.