Fix bug introduced by suppressing error message of dead destinations
during shutdown
This commit is contained in:
parent
1ef8d537ca
commit
5e5d2f16b9
@ -149,9 +149,9 @@ message *m_ptr; /* pointer to message in the caller's space */
|
|||||||
return(ECALLDENIED); /* call denied by ipc mask */
|
return(ECALLDENIED); /* call denied by ipc mask */
|
||||||
}
|
}
|
||||||
|
|
||||||
if (isemptyn(src_dst) && !shutdown_started) {
|
if (isemptyn(src_dst)) {
|
||||||
kprintf("sys_call: dead dest; %d, %d, %d\n",
|
if(!shutdown_started)
|
||||||
function, proc_nr(caller_ptr), src_dst);
|
kprintf("sys_call: dead dst; %d->%d\n", proc_nr(caller_ptr), src_dst);
|
||||||
return(EDEADDST); /* cannot send to the dead */
|
return(EDEADDST); /* cannot send to the dead */
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user