Changes in kernel/generic/src/ipc/sysipc.c [ab34cc9:fdd4898] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified kernel/generic/src/ipc/sysipc.c ¶
rab34cc9 rfdd4898 54 54 #include <mm/as.h> 55 55 #include <print.h> 56 #include <macros.h>57 56 58 57 /** … … 253 252 /* The connection was accepted */ 254 253 phone_connect(phoneid, &answer->sender->answerbox); 254 /* Set 'task hash' as arg4 of response */ 255 IPC_SET_ARG4(answer->data, (sysarg_t) TASK); 255 256 /* Set 'phone hash' as arg5 of response */ 256 257 IPC_SET_ARG5(answer->data, … … 374 375 IPC_GET_ARG2(*olddata), 375 376 IPC_GET_ARG3(*olddata), 376 LOWER32(olddata->task_id),377 UPPER32(olddata->task_id));377 (sysarg_t) olddata->task, 378 (sysarg_t) TASK); 378 379 IPC_SET_RETVAL(answer->data, rc); 379 380 }
Note:
See TracChangeset
for help on using the changeset viewer.