Changeset cfffb290 in mainline for kernel/generic/src/proc/task.c
- Timestamp:
- 2006-08-05T16:05:25Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- e2882a7
- Parents:
- b006a2c8
- File:
-
- 1 edited
-
kernel/generic/src/proc/task.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/src/proc/task.c
rb006a2c8 rcfffb290 116 116 ta->main_thread = NULL; 117 117 ta->refcount = 0; 118 ta->context = THE->context;118 ta->context = CONTEXT; 119 119 120 120 ta->capabilities = 0; … … 122 122 123 123 ipc_answerbox_init(&ta->answerbox); 124 for (i =0; i < IPC_MAX_PHONES;i++)124 for (i = 0; i < IPC_MAX_PHONES; i++) 125 125 ipc_phone_init(&ta->phones[i]); 126 if ( ipc_phone_0)126 if ((ipc_phone_0) && (context_check(ipc_phone_0->task->context, ta->context))) 127 127 ipc_phone_connect(&ta->phones[0], ipc_phone_0); 128 128 atomic_set(&ta->active_calls, 0);
Note:
See TracChangeset
for help on using the changeset viewer.
