2013-06-13 08:39:59 +00:00
|
|
|
/*
|
|
|
|
* \brief Connection to regulator service
|
|
|
|
* \author Stefan Kalkowski
|
|
|
|
* \date 2013-06-13
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
2017-02-20 12:23:52 +00:00
|
|
|
* Copyright (C) 2013-2017 Genode Labs GmbH
|
2013-06-13 08:39:59 +00:00
|
|
|
*
|
|
|
|
* This file is part of the Genode OS framework, which is distributed
|
2017-02-20 12:23:52 +00:00
|
|
|
* under the terms of the GNU Affero General Public License version 3.
|
2013-06-13 08:39:59 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _INCLUDE__REGULATOR_SESSION__CONNECTION_H_
|
|
|
|
#define _INCLUDE__REGULATOR_SESSION__CONNECTION_H_
|
|
|
|
|
|
|
|
#include <regulator_session/client.h>
|
|
|
|
#include <regulator/consts.h>
|
|
|
|
#include <base/connection.h>
|
|
|
|
|
2015-03-04 20:12:14 +00:00
|
|
|
namespace Regulator { struct Connection; }
|
2013-06-13 08:39:59 +00:00
|
|
|
|
2015-03-04 20:12:14 +00:00
|
|
|
|
|
|
|
struct Regulator::Connection : Genode::Connection<Session>, Session_client
|
|
|
|
{
|
2016-05-10 15:24:51 +00:00
|
|
|
/**
|
|
|
|
* Constructor
|
|
|
|
*
|
|
|
|
* \param regulator identifier for the specific regulator
|
|
|
|
* \param label string identifier of the client
|
|
|
|
*/
|
|
|
|
Connection(Genode::Env &env, Regulator_id regulator, const char * label = "")
|
|
|
|
:
|
2019-01-30 16:27:46 +00:00
|
|
|
Genode::Connection<Session>(env,
|
|
|
|
session(env.parent(),
|
|
|
|
"ram_quota=8K, cap_quota=%ld, regulator=\"%s\", label=\"%s\"",
|
|
|
|
CAP_QUOTA, regulator_name_by_id(regulator), label)),
|
2016-05-10 15:24:51 +00:00
|
|
|
Session_client(cap())
|
|
|
|
{ }
|
2015-03-04 20:12:14 +00:00
|
|
|
};
|
2013-06-13 08:39:59 +00:00
|
|
|
|
|
|
|
#endif /* _INCLUDE__REGULATOR_SESSION__CONNECTION_H_ */
|