Changeset b7fd2a0 in mainline for uspace/lib/c/generic/io/con_srv.c
- Timestamp:
- 2018-01-13T03:10:29Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- a53ed3a
- Parents:
- 36f0738
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/generic/io/con_srv.c
r36f0738 rb7fd2a0 42 42 #include <io/con_srv.h> 43 43 44 static int console_ev_encode(cons_event_t *event, ipc_call_t *call)44 static errno_t console_ev_encode(cons_event_t *event, ipc_call_t *call) 45 45 { 46 46 IPC_SET_ARG1(*call, event->type); … … 71 71 void *buf; 72 72 size_t size; 73 int rc;73 errno_t rc; 74 74 ipc_callid_t rcallid; 75 75 … … 113 113 void *data; 114 114 size_t size; 115 int rc;115 errno_t rc; 116 116 117 117 rc = async_data_write_accept(&data, false, 0, 0, 0, &size); … … 178 178 ipc_call_t *call) 179 179 { 180 int rc;180 errno_t rc; 181 181 sysarg_t col; 182 182 sysarg_t row; … … 194 194 ipc_call_t *call) 195 195 { 196 int rc;196 errno_t rc; 197 197 sysarg_t cols; 198 198 sysarg_t rows; … … 210 210 ipc_call_t *call) 211 211 { 212 int rc;212 errno_t rc; 213 213 console_caps_t ccap; 214 214 … … 295 295 ipc_call_t *call) 296 296 { 297 int rc;297 errno_t rc; 298 298 cons_event_t event; 299 299 ipc_call_t result; … … 340 340 } 341 341 342 int con_conn(ipc_callid_t iid, ipc_call_t *icall, con_srvs_t *srvs)342 errno_t con_conn(ipc_callid_t iid, ipc_call_t *icall, con_srvs_t *srvs) 343 343 { 344 344 con_srv_t *srv; 345 int rc;345 errno_t rc; 346 346 347 347 /* Accept the connection */
Note:
See TracChangeset
for help on using the changeset viewer.