Propagate process labels to PD sessions

On Linux, we use the session label for naming the corresponding Linux
process. When looking up the processes via 'ps', the Genode process
hierarchy becomes immediately visible.
This commit is contained in:
Norman Feske
2012-10-11 20:57:10 +02:00
parent 97162332c9
commit db2b1a37ae
8 changed files with 32 additions and 34 deletions

View File

@ -35,8 +35,8 @@ namespace Genode {
* Linux-specific extension **
*****************************/
void start(Capability<Dataspace> binary, Name const &name) {
call<Rpc_start>(binary, name); }
void start(Capability<Dataspace> binary) {
call<Rpc_start>(binary); }
};
}