hw: use descriptive bool value names in ipc.cc

ref #989
This commit is contained in:
Martin Stein 2014-01-22 15:45:51 +01:00 committed by Norman Feske
parent 901b3e2bb4
commit a9747825fc

View File

@ -141,7 +141,7 @@ void Ipc_server::_reply()
unsigned const local_name = Ipc_ostream::_dst.local_name();
Native_utcb * const utcb = Thread_base::myself()->utcb();
utcb->message()->prepare_send(_snd_msg->buf, _write_offset, local_name);
Kernel::send_reply_msg(0);
Kernel::send_reply_msg(false);
}
@ -156,7 +156,7 @@ void Ipc_server::_reply_wait()
unsigned const local_name = Ipc_ostream::_dst.local_name();
Native_utcb * const utcb = Thread_base::myself()->utcb();
utcb->message()->prepare_send(_snd_msg->buf, _write_offset, local_name);
if (Kernel::send_reply_msg(1)) {
if (Kernel::send_reply_msg(true)) {
PERR("failed to receive request");
throw Blocking_canceled();
}