Changes in uspace/srv/logger/writer.c [fafb8e5:beb83c1] in mainline
- File:
-
- 1 edited
-
uspace/srv/logger/writer.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/logger/writer.c
rfafb8e5 rbeb83c1 109 109 async_get_call(&call); 110 110 111 if (! ipc_get_imethod(&call)) {111 if (!IPC_GET_IMETHOD(call)) { 112 112 async_answer_0(&call, EOK); 113 113 break; 114 114 } 115 115 116 switch ( ipc_get_imethod(&call)) {116 switch (IPC_GET_IMETHOD(call)) { 117 117 case LOGGER_WRITER_CREATE_LOG: 118 log = handle_create_log( ipc_get_arg1(&call));118 log = handle_create_log(IPC_GET_ARG1(call)); 119 119 if (log == NULL) { 120 120 async_answer_0(&call, ENOMEM); … … 130 130 break; 131 131 case LOGGER_WRITER_MESSAGE: 132 rc = handle_receive_message( ipc_get_arg1(&call),133 ipc_get_arg2(&call));132 rc = handle_receive_message(IPC_GET_ARG1(call), 133 IPC_GET_ARG2(call)); 134 134 async_answer_0(&call, rc); 135 135 break;
Note:
See TracChangeset
for help on using the changeset viewer.
