Changeset 33c2952 in mainline for kernel/generic/include/proc/task.h
- Timestamp:
- 2012-11-07T21:00:02Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- dcb0751
- Parents:
- fc89e32 (diff), 94795812 (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
rfc89e32 r33c2952 95 95 96 96 /* IPC stuff */ 97 answerbox_t answerbox; /**< Communication endpoint */ 97 98 /** Receiving communication endpoint */ 99 answerbox_t answerbox; 100 101 /** Sending communication endpoints */ 98 102 phone_t phones[IPC_MAX_PHONES]; 99 stats_ipc_t ipc_info; /**< IPC statistics */ 103 104 /** Spinlock protecting the active_calls list. */ 105 SPINLOCK_DECLARE(active_calls_lock); 106 107 /** 108 * List of all calls sent by this task that have not yet been 109 * answered. 110 */ 111 list_t active_calls; 112 100 113 event_t events[EVENT_TASK_END - EVENT_END]; 114 115 /** IPC statistics */ 116 stats_ipc_t ipc_info; 101 117 102 118 #ifdef CONFIG_UDEBUG
Note:
See TracChangeset
for help on using the changeset viewer.