Subversion Repositories HelenOS-historic

Compare Revisions

Ignore whitespace Rev 1692 → Rev 1693

/kernel/trunk/generic/src/ipc/sysipc.c
518,7 → 518,12
 
if (call->flags & IPC_CALL_NOTIF) {
ASSERT(! (call->flags & IPC_CALL_STATIC_ALLOC));
STRUCT_TO_USPACE(&calldata->args, &call->data.args);
 
/* Set in_phone_hash to the interrupt counter */
call->data.phone = (void *)call->private;
STRUCT_TO_USPACE(calldata, &call->data);
 
ipc_call_free(call);
return ((__native)call) | IPC_CALLID_NOTIFICATION;