Changes in kernel/generic/include/proc/task.h [26aafe8:5d0500c] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/include/proc/task.h
r26aafe8 r5d0500c 38 38 #include <cpu.h> 39 39 #include <ipc/ipc.h> 40 #include <ipc/event.h> 41 #include <ipc/kbox.h> 40 42 #include <synch/spinlock.h> 41 43 #include <synch/mutex.h> … … 53 55 #include <proc/scheduler.h> 54 56 #include <udebug/udebug.h> 55 #include <ipc/kbox.h>56 57 #include <mm/as.h> 57 #include < sysinfo/abi.h>58 #include <abi/sysinfo.h> 58 59 59 60 struct thread; … … 73 74 char name[TASK_NAME_BUFLEN]; 74 75 /** List of threads contained in this task. */ 75 li nk_t th_head;76 list_t threads; 76 77 /** Address space. */ 77 78 as_t *as; … … 93 94 phone_t phones[IPC_MAX_PHONES]; 94 95 stats_ipc_t ipc_info; /**< IPC statistics */ 95 /**List of synchronous answerboxes. */96 link_t sync_box_head;96 list_t sync_boxes; /**< List of synchronous answerboxes. */ 97 event_t events[EVENT_TASK_END - EVENT_END]; 97 98 98 99 #ifdef CONFIG_UDEBUG
Note:
See TracChangeset
for help on using the changeset viewer.