Changeset 3be9d10 in mainline for uspace/srv/logger
- Timestamp:
- 2018-03-21T21:29:31Z (8 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 3e242d2
- Parents:
- eadaeae8
- Location:
- uspace/srv/logger
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/logger/ctl.c
readaeae8 r3be9d10 63 63 } 64 64 65 void logger_connection_handler_control( ipc_callid_t callid)65 void logger_connection_handler_control(cap_call_handle_t callid) 66 66 { 67 67 errno_t rc; … … 73 73 while (true) { 74 74 ipc_call_t call; 75 ipc_callid_t callid = async_get_call(&call);75 cap_call_handle_t callid = async_get_call(&call); 76 76 77 77 if (!IPC_GET_IMETHOD(call)) -
uspace/srv/logger/logger.h
readaeae8 r3be9d10 98 98 99 99 100 void logger_connection_handler_control( ipc_callid_t);101 void logger_connection_handler_writer( ipc_callid_t);100 void logger_connection_handler_control(cap_call_handle_t); 101 void logger_connection_handler_writer(cap_call_handle_t); 102 102 103 103 void parse_initial_settings(void); -
uspace/srv/logger/main.c
readaeae8 r3be9d10 48 48 #include "logger.h" 49 49 50 static void connection_handler_control( ipc_callid_t iid, ipc_call_t *icall,50 static void connection_handler_control(cap_call_handle_t iid, ipc_call_t *icall, 51 51 void *arg) 52 52 { … … 54 54 } 55 55 56 static void connection_handler_writer( ipc_callid_t iid, ipc_call_t *icall,56 static void connection_handler_writer(cap_call_handle_t iid, ipc_call_t *icall, 57 57 void *arg) 58 58 { -
uspace/srv/logger/writer.c
readaeae8 r3be9d10 94 94 } 95 95 96 void logger_connection_handler_writer( ipc_callid_t callid)96 void logger_connection_handler_writer(cap_call_handle_t callid) 97 97 { 98 98 logger_log_t *log; … … 109 109 while (true) { 110 110 ipc_call_t call; 111 ipc_callid_t callid = async_get_call(&call);111 cap_call_handle_t callid = async_get_call(&call); 112 112 113 113 if (!IPC_GET_IMETHOD(call))
Note:
See TracChangeset
for help on using the changeset viewer.