Changeset a46e56b in mainline for uspace/srv/logger/writer.c
- Timestamp:
- 2018-03-22T06:49:35Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 77f0a1d
- Parents:
- 3e242d2
- git-author:
- Jakub Jermar <jakub@…> (2018-03-21 23:29:06)
- git-committer:
- Jakub Jermar <jakub@…> (2018-03-22 06:49:35)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/logger/writer.c
r3e242d2 ra46e56b 94 94 } 95 95 96 void logger_connection_handler_writer(cap_call_handle_t c allid)96 void logger_connection_handler_writer(cap_call_handle_t chandle) 97 97 { 98 98 logger_log_t *log; … … 100 100 101 101 /* Acknowledge the connection. */ 102 async_answer_0(c allid, EOK);102 async_answer_0(chandle, EOK); 103 103 104 104 logger_log("writer: new client.\n"); … … 109 109 while (true) { 110 110 ipc_call_t call; 111 cap_call_handle_t c allid= async_get_call(&call);111 cap_call_handle_t chandle = async_get_call(&call); 112 112 113 113 if (!IPC_GET_IMETHOD(call)) … … 118 118 log = handle_create_log(IPC_GET_ARG1(call)); 119 119 if (log == NULL) { 120 async_answer_0(c allid, ENOMEM);120 async_answer_0(chandle, ENOMEM); 121 121 break; 122 122 } 123 123 if (!register_log(®istered_logs, log)) { 124 124 log_unlock(log); 125 async_answer_0(c allid, ELIMIT);125 async_answer_0(chandle, ELIMIT); 126 126 break; 127 127 } 128 128 log_unlock(log); 129 async_answer_1(c allid, EOK, (sysarg_t) log);129 async_answer_1(chandle, EOK, (sysarg_t) log); 130 130 break; 131 131 case LOGGER_WRITER_MESSAGE: 132 132 rc = handle_receive_message(IPC_GET_ARG1(call), 133 133 IPC_GET_ARG2(call)); 134 async_answer_0(c allid, rc);134 async_answer_0(chandle, rc); 135 135 break; 136 136 default: 137 async_answer_0(c allid, EINVAL);137 async_answer_0(chandle, EINVAL); 138 138 break; 139 139 }
Note:
See TracChangeset
for help on using the changeset viewer.