Changeset 46577995 in mainline for kernel/generic/src/ipc/ops/shareout.c
- Timestamp:
- 2018-01-04T20:50:52Z (8 years ago)
- Children:
- e211ea04
- Parents:
- facacc71
- git-author:
- Jiří Zárevúcky <zarevucky.jiri@…> (2018-01-04 20:47:53)
- git-committer:
- Jiří Zárevúcky <zarevucky.jiri@…> (2018-01-04 20:50:52)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/src/ipc/ops/shareout.c
rfacacc71 r46577995 42 42 #include <arch.h> 43 43 44 static int request_preprocess(call_t *call, phone_t *phone)44 static errno_t request_preprocess(call_t *call, phone_t *phone) 45 45 { 46 46 size_t size = as_area_get_size(IPC_GET_ARG1(call->data)); … … 53 53 } 54 54 55 static int answer_preprocess(call_t *answer, ipc_data_t *olddata)55 static errno_t answer_preprocess(call_t *answer, ipc_data_t *olddata) 56 56 { 57 int rc = EOK;57 errno_t rc = EOK; 58 58 59 59 if (!IPC_GET_RETVAL(answer->data)) {
Note:
See TracChangeset
for help on using the changeset viewer.