Changeset 70527f1 in mainline for src/proc/task.c
- Timestamp:
- 2005-06-03T14:51:05Z (20 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 673104e
- Parents:
- ac5d02b
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/proc/task.c
rac5d02b r70527f1 40 40 link_t tasks_head; 41 41 42 43 /** Initialize tasks 44 * 45 * Initialize kernel tasks support. 46 * 47 */ 42 48 void task_init(void) 43 49 { … … 47 53 } 48 54 55 56 /** Create new task 57 * 58 * Create new task with no threads. 59 * 60 * @param m Task's virtual memory structure. 61 * 62 * @return New task's structure on success, NULL on failure. 63 * 64 */ 49 65 task_t *task_create(vm_t *m) 50 66 {
Note:
See TracChangeset
for help on using the changeset viewer.