Changes in uspace/srv/logger/ctl.c [fafb8e5:beb83c1] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/logger/ctl.c
rfafb8e5 rbeb83c1 75 75 async_get_call(&call); 76 76 77 if (! ipc_get_imethod(&call)) {77 if (!IPC_GET_IMETHOD(call)) { 78 78 async_answer_0(&call, EOK); 79 79 break; 80 80 } 81 81 82 switch ( ipc_get_imethod(&call)) {82 switch (IPC_GET_IMETHOD(call)) { 83 83 case LOGGER_CONTROL_SET_DEFAULT_LEVEL: 84 rc = set_default_logging_level( ipc_get_arg1(&call));84 rc = set_default_logging_level(IPC_GET_ARG1(call)); 85 85 async_answer_0(&call, rc); 86 86 break; 87 87 case LOGGER_CONTROL_SET_LOG_LEVEL: 88 rc = handle_log_level_change( ipc_get_arg1(&call));88 rc = handle_log_level_change(IPC_GET_ARG1(call)); 89 89 async_answer_0(&call, rc); 90 90 break;
Note:
See TracChangeset
for help on using the changeset viewer.