Changes in kernel/generic/include/proc/task.h [a307beb:a000878c] in mainline
- File:
-
- 1 edited
-
kernel/generic/include/proc/task.h (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/include/proc/task.h
ra307beb ra000878c 57 57 #include <mm/as.h> 58 58 59 # include <ps/taskinfo.h>59 #define TASK_NAME_BUFLEN 20 60 60 61 61 struct thread; … … 94 94 answerbox_t answerbox; /**< Communication endpoint */ 95 95 phone_t phones[IPC_MAX_PHONES]; 96 task_ipc_info_t ipc_info; /**< IPC statistics */97 96 /** 98 97 * Active asynchronous messages. It is used for limiting uspace to … … 123 122 124 123 /** Accumulated accounting. */ 125 uint64_t ucycles; 126 uint64_t kcycles; 124 uint64_t cycles; 127 125 } task_t; 128 126 … … 136 134 extern task_t *task_find_by_id(task_id_t id); 137 135 extern int task_kill(task_id_t id); 138 extern void task_get_accounting(task_t *t, uint64_t *ucycles, uint64_t *kcycles);136 extern uint64_t task_get_accounting(task_t *t); 139 137 extern void task_print_list(void); 140 138
Note:
See TracChangeset
for help on using the changeset viewer.
