Changes in kernel/generic/src/udebug/udebug_ipc.c [b7fd2a0:7f11dc6] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/src/udebug/udebug_ipc.c
rb7fd2a0 r7f11dc6 51 51 #include <udebug/udebug_ipc.h> 52 52 53 errno_t udebug_request_preprocess(call_t *call, phone_t *phone)53 int udebug_request_preprocess(call_t *call, phone_t *phone) 54 54 { 55 55 switch (IPC_GET_ARG1(call->data)) { … … 71 71 static void udebug_receive_begin(call_t *call) 72 72 { 73 errno_t rc;73 int rc; 74 74 bool active; 75 75 … … 98 98 static void udebug_receive_end(call_t *call) 99 99 { 100 errno_t rc;100 int rc; 101 101 102 102 rc = udebug_end(); … … 113 113 static void udebug_receive_set_evmask(call_t *call) 114 114 { 115 errno_t rc;115 int rc; 116 116 udebug_evmask_t mask; 117 117 … … 132 132 { 133 133 thread_t *t; 134 errno_t rc;134 int rc; 135 135 136 136 t = (thread_t *)IPC_GET_ARG2(call->data); … … 152 152 { 153 153 thread_t *t; 154 errno_t rc;154 int rc; 155 155 156 156 t = (thread_t *)IPC_GET_ARG2(call->data); … … 172 172 void *buffer; 173 173 size_t copied, needed; 174 errno_t rc;174 int rc; 175 175 176 176 uspace_addr = IPC_GET_ARG2(call->data); /* Destination address */ … … 307 307 thread_t *t; 308 308 sysarg_t uspace_addr; 309 errno_t rc;309 int rc; 310 310 void *buffer; 311 311 … … 346 346 sysarg_t to_copy; 347 347 void *buffer = NULL; 348 errno_t rc;348 int rc; 349 349 350 350 t = (thread_t *) IPC_GET_ARG2(call->data); … … 390 390 unsigned size; 391 391 void *buffer = NULL; 392 errno_t rc;392 int rc; 393 393 394 394 uspace_dst = IPC_GET_ARG2(call->data);
Note:
See TracChangeset
for help on using the changeset viewer.