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