- Timestamp:
- 2011-08-19T18:03:34Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 7b2a7ad
- Parents:
- 16f9782
- Location:
- kernel/generic
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/include/ipc/ipc.h
r16f9782 rab34cc9 98 98 typedef struct { 99 99 sysarg_t args[IPC_CALL_LEN]; 100 /** Task which made or forwarded the call with IPC_FF_ROUTE_FROM_ME. */ 100 /** 101 * Task which made or forwarded the call with IPC_FF_ROUTE_FROM_ME, 102 * or the task which answered the call. 103 */ 101 104 task_id_t task_id; 102 105 /** Phone which made or last masqueraded this call. */ -
kernel/generic/src/ipc/ipc.c
r16f9782 rab34cc9 230 230 } 231 231 } 232 233 call->data.task_id = TASK->taskid; 232 234 233 235 if (do_lock) -
kernel/generic/src/ipc/sysipc.c
r16f9782 rab34cc9 253 253 /* The connection was accepted */ 254 254 phone_connect(phoneid, &answer->sender->answerbox); 255 /* Set 'task ID' as arg3 and arg4 of response */256 IPC_SET_ARG3(answer->data, LOWER32(TASK->taskid));257 IPC_SET_ARG4(answer->data, UPPER32(TASK->taskid));258 255 /* Set 'phone hash' as arg5 of response */ 259 256 IPC_SET_ARG5(answer->data,
Note:
See TracChangeset
for help on using the changeset viewer.