mirror of
https://github.com/genodelabs/genode.git
synced 2025-06-01 15:10:56 +00:00
base-okl4: remove non-critical error message
This commit is contained in:
parent
b5b958c276
commit
b39c124628
@ -187,11 +187,14 @@ void Genode::ipc_reply(Native_capability caller, Rpc_exception_code exc,
|
|||||||
/* copy reply to the UTCBs message registers */
|
/* copy reply to the UTCBs message registers */
|
||||||
copy_msg_to_utcb(snd_msg, exc.value);
|
copy_msg_to_utcb(snd_msg, exc.value);
|
||||||
|
|
||||||
/* perform non-blocking IPC send operation */
|
/*
|
||||||
L4_MsgTag_t rcv_tag = L4_Reply(Capability_space::ipc_cap_data(caller).dst);
|
* Perform non-blocking IPC-send operation
|
||||||
|
*
|
||||||
if (L4_IpcFailed(rcv_tag))
|
* Errors are deliberately ignored. The operation may fail if the
|
||||||
error("ipc error in ipc_reply - gets ignored");
|
* client disappeared during the IPC call. But this condition does
|
||||||
|
* not concern the server side.
|
||||||
|
*/
|
||||||
|
(void)L4_Reply(Capability_space::ipc_cap_data(caller).dst);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user