mirror of
https://github.com/genodelabs/genode.git
synced 2025-06-19 23:53:55 +00:00
Extend base-hw specific vm-session (fix #738)
Introduce pause syscall for VM objects, and extend the vm-session interface to support it.
This commit is contained in:
committed by
Norman Feske
parent
d8f0392c9f
commit
ae291b557d
@ -41,8 +41,8 @@ namespace Genode
|
||||
void exception_handler(Signal_context_capability handler) {
|
||||
call<Rpc_exception_handler>(handler); }
|
||||
|
||||
void run() {
|
||||
call<Rpc_run>(); }
|
||||
void run() { call<Rpc_run>(); }
|
||||
void pause() { call<Rpc_pause>(); }
|
||||
};
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user