Subversion Repositories HelenOS

Compare Revisions

Ignore whitespace Rev 2809 → Rev 2810

/branches/tracing/kernel/generic/src/ipc/sysipc.c
397,7 → 397,7
 
uspace_buffer = (void *)IPC_GET_ARG2(call->data);
to_copy = IPC_GET_ARG3(call->data);
if (to_copy > 6) to_copy = 6;
if (to_copy > 6 * sizeof(unative_t)) to_copy = 6 * sizeof(unative_t);
 
rc = copy_to_uspace(uspace_buffer, t->syscall_args, to_copy);
if (rc != 0) {