Changes in kernel/generic/src/udebug/udebug_ipc.c [3698e44:96b02eb9] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/src/udebug/udebug_ipc.c
r3698e44 r96b02eb9 210 210 static void udebug_receive_name_read(call_t *call) 211 211 { 212 unative_t uspace_addr;213 unative_t to_copy;212 sysarg_t uspace_addr; 213 sysarg_t to_copy; 214 214 size_t data_size; 215 215 size_t buf_size; … … 257 257 static void udebug_receive_areas_read(call_t *call) 258 258 { 259 unative_t uspace_addr;260 unative_t to_copy;259 sysarg_t uspace_addr; 260 sysarg_t to_copy; 261 261 size_t data_size; 262 262 size_t buf_size; … … 304 304 { 305 305 thread_t *t; 306 unative_t uspace_addr;306 sysarg_t uspace_addr; 307 307 int rc; 308 308 void *buffer; … … 328 328 (no way to distinguish method in answer) */ 329 329 IPC_SET_ARG1(call->data, uspace_addr); 330 IPC_SET_ARG2(call->data, 6 * sizeof( unative_t));330 IPC_SET_ARG2(call->data, 6 * sizeof(sysarg_t)); 331 331 call->buffer = buffer; 332 332 … … 341 341 { 342 342 thread_t *t; 343 unative_t uspace_addr;344 unative_t to_copy;343 sysarg_t uspace_addr; 344 sysarg_t to_copy; 345 345 void *buffer; 346 346 int rc; … … 382 382 static void udebug_receive_mem_read(call_t *call) 383 383 { 384 unative_t uspace_dst;385 unative_t uspace_src;384 sysarg_t uspace_dst; 385 sysarg_t uspace_src; 386 386 unsigned size; 387 387 void *buffer;
Note:
See TracChangeset
for help on using the changeset viewer.