nitpicker: Add label arg to connection constructor

This commit is contained in:
Norman Feske 2014-06-17 14:04:38 +02:00
parent 26fcea44b2
commit 0d82070b82
1 changed files with 6 additions and 3 deletions

View File

@ -34,12 +34,15 @@ class Nitpicker::Connection : public Genode::Connection<Session>,
/**
* Create session and return typed session capability
*/
Session_capability _connect(bool stay_top)
Session_capability _connect(bool stay_top, char const *label)
{
enum { ARGBUF_SIZE = 128 };
char argbuf[ARGBUF_SIZE];
argbuf[0] = 0;
if (Genode::strlen(label) > 0)
Genode::snprintf(argbuf, sizeof(argbuf), "label=\"%s\"", label);
/*
* Declare ram-quota donation
*/
@ -58,10 +61,10 @@ class Nitpicker::Connection : public Genode::Connection<Session>,
/**
* Constructor
*/
Connection(bool stay_top = false)
Connection(bool stay_top = false, char const *label = "")
:
/* establish nitpicker session */
Genode::Connection<Session>(_connect(stay_top)),
Genode::Connection<Session>(_connect(stay_top, label)),
Session_client(cap()),
/* request frame-buffer and input sub sessions */