mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-19 05:37:54 +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_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);
|
||||
|
||||
if (L4_IpcFailed(rcv_tag))
|
||||
error("ipc error in ipc_reply - gets ignored");
|
||||
/*
|
||||
* Perform non-blocking IPC-send operation
|
||||
*
|
||||
* Errors are deliberately ignored. The operation may fail if the
|
||||
* 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…
Reference in New Issue
Block a user