2013-04-29 12:53:49 +00:00
|
|
|
/*
|
|
|
|
* \brief Connection to platform service
|
|
|
|
* \author Stefan Kalkowski
|
|
|
|
* \date 2013-04-29
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
2017-02-20 12:23:52 +00:00
|
|
|
* Copyright (C) 2013-2017 Genode Labs GmbH
|
2013-04-29 12:53:49 +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-04-29 12:53:49 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _INCLUDE__PLATFORM_SESSION__CONNECTION_H_
|
|
|
|
#define _INCLUDE__PLATFORM_SESSION__CONNECTION_H_
|
|
|
|
|
|
|
|
#include <platform_session/client.h>
|
|
|
|
#include <util/arg_string.h>
|
|
|
|
#include <base/connection.h>
|
|
|
|
|
2015-03-04 20:12:14 +00:00
|
|
|
namespace Platform { class Connection; }
|
2013-04-29 12:53:49 +00:00
|
|
|
|
|
|
|
|
2015-03-04 20:12:14 +00:00
|
|
|
struct Platform::Connection : Genode::Connection<Session>, Client
|
|
|
|
{
|
2016-05-10 15:24:51 +00:00
|
|
|
/**
|
|
|
|
* Constructor
|
|
|
|
*/
|
|
|
|
Connection(Genode::Env &env)
|
2017-05-07 20:03:25 +00:00
|
|
|
: Genode::Connection<Session>(env, session(env.parent(),
|
|
|
|
"ram_quota=6K, cap_quota=%ld", CAP_QUOTA)),
|
2016-05-10 15:24:51 +00:00
|
|
|
Client(cap()) { }
|
2015-03-04 20:12:14 +00:00
|
|
|
};
|
2013-04-29 12:53:49 +00:00
|
|
|
|
|
|
|
#endif /* _INCLUDE__PLATFORM_SESSION__CONNECTION_H_ */
|