Changeset 03362fbd in mainline for kernel/generic/src/proc/task.c
- Timestamp:
- 2013-02-09T23:14:45Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/fix-logger-deadlock, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 22dfd38
- Parents:
- b5d2e57 (diff), 005b765 (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
-
kernel/generic/src/proc/task.c (modified) (6 diffs)
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/src/proc/task.c
rb5d2e57 r03362fbd 156 156 157 157 list_initialize(&task->threads); 158 list_initialize(&task->sync_boxes);159 158 160 159 ipc_answerbox_init(&task->answerbox, task); … … 162 161 size_t i; 163 162 for (i = 0; i < IPC_MAX_PHONES; i++) 164 ipc_phone_init(&task->phones[i]); 163 ipc_phone_init(&task->phones[i], task); 164 165 spinlock_initialize(&task->active_calls_lock, "active_calls_lock"); 166 list_initialize(&task->active_calls); 165 167 166 168 #ifdef CONFIG_UDEBUG … … 194 196 task->ucycles = 0; 195 197 task->kcycles = 0; 196 198 197 199 task->ipc_info.call_sent = 0; 198 200 task->ipc_info.call_received = 0; … … 204 206 event_task_init(task); 205 207 208 task->answerbox.active = true; 209 206 210 #ifdef CONFIG_UDEBUG 207 211 /* Init debugging stuff */ … … 209 213 210 214 /* Init kbox stuff */ 215 task->kb.box.active = true; 211 216 task->kb.finished = false; 212 217 #endif … … 214 219 if ((ipc_phone_0) && 215 220 (container_check(ipc_phone_0->task->container, task->container))) 216 ipc_phone_connect(&task->phones[0], ipc_phone_0);221 (void) ipc_phone_connect(&task->phones[0], ipc_phone_0); 217 222 218 223 btree_create(&task->futexes);
Note:
See TracChangeset
for help on using the changeset viewer.
