Changeset b7fd2a0 in mainline for kernel/generic/src/ipc/ops/stchngath.c
- Timestamp:
- 2018-01-13T03:10:29Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- a53ed3a
- Parents:
- 36f0738
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/src/ipc/ops/stchngath.c
r36f0738 rb7fd2a0 41 41 #include <macros.h> 42 42 43 static int request_preprocess(call_t *call, phone_t *phone)43 static errno_t request_preprocess(call_t *call, phone_t *phone) 44 44 { 45 45 task_t *other_task_s; … … 68 68 } 69 69 70 static int answer_preprocess(call_t *answer, ipc_data_t *olddata)70 static errno_t answer_preprocess(call_t *answer, ipc_data_t *olddata) 71 71 { 72 int rc = EOK;72 errno_t rc = EOK; 73 73 74 74 if (!IPC_GET_RETVAL(answer->data)) {
Note:
See TracChangeset
for help on using the changeset viewer.