Changeset a33f0a6 in mainline for kernel/generic/include/proc/task.h
- Timestamp:
- 2011-08-03T17:34:57Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 1940326
- Parents:
- 52a79081 (diff), 3fab770 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/include/proc/task.h
r52a79081 ra33f0a6 73 73 char name[TASK_NAME_BUFLEN]; 74 74 /** List of threads contained in this task. */ 75 li nk_t th_head;75 list_t threads; 76 76 /** Address space. */ 77 77 as_t *as; 78 78 /** Unique identity of task. */ 79 79 task_id_t taskid; 80 /** Task security cont ext. */81 cont ext_id_t context;80 /** Task security container. */ 81 container_id_t container; 82 82 83 83 /** Number of references (i.e. threads). */ … … 94 94 stats_ipc_t ipc_info; /**< IPC statistics */ 95 95 /** List of synchronous answerboxes. */ 96 li nk_t sync_box_head;96 list_t sync_boxes; 97 97 98 98 #ifdef CONFIG_UDEBUG
Note:
See TracChangeset
for help on using the changeset viewer.