mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-20 06:07:59 +00:00
parent
039bae9710
commit
26db598fc0
@ -38,10 +38,10 @@ class Kernel::Ipc_node
|
|||||||
|
|
||||||
enum State
|
enum State
|
||||||
{
|
{
|
||||||
INACTIVE = 1,
|
INACTIVE = 1,
|
||||||
AWAIT_REPLY = 2,
|
AWAIT_REPLY = 2,
|
||||||
AWAIT_REQUEST = 3,
|
AWAIT_REQUEST = 3,
|
||||||
PREPARE_REPLY = 4,
|
PREPARE_REPLY = 4,
|
||||||
PREPARE_AND_AWAIT_REPLY = 5,
|
PREPARE_AND_AWAIT_REPLY = 5,
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -318,6 +318,10 @@ class Kernel::Ipc_node
|
|||||||
_state = INACTIVE;
|
_state = INACTIVE;
|
||||||
_await_ipc_failed();
|
_await_ipc_failed();
|
||||||
return;
|
return;
|
||||||
|
case AWAIT_REQUEST:
|
||||||
|
_state = INACTIVE;
|
||||||
|
_await_ipc_failed();
|
||||||
|
return;
|
||||||
case PREPARE_AND_AWAIT_REPLY:
|
case PREPARE_AND_AWAIT_REPLY:
|
||||||
_cancel_outbuf_request();
|
_cancel_outbuf_request();
|
||||||
_state = PREPARE_REPLY;
|
_state = PREPARE_REPLY;
|
||||||
|
Loading…
Reference in New Issue
Block a user