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:
Stefan Kalkowski
2013-05-08 15:22:28 +02:00
committed by Norman Feske
parent d8f0392c9f
commit ae291b557d
6 changed files with 61 additions and 7 deletions

View File

@ -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>(); }
};
}