2013-04-29 12:53:49 +00:00
|
|
|
/*
|
|
|
|
* \brief Connection to platform service
|
|
|
|
* \author Stefan Kalkowski
|
|
|
|
* \date 2013-04-29
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright (C) 2013 Genode Labs GmbH
|
|
|
|
*
|
|
|
|
* This file is part of the Genode OS framework, which is distributed
|
|
|
|
* under the terms of the GNU General Public License version 2.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#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)
|
|
|
|
: Genode::Connection<Session>(env, session(env.parent(), "ram_quota=4K")),
|
|
|
|
Client(cap()) { }
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Constructor
|
|
|
|
*
|
|
|
|
* \noapi
|
|
|
|
* \deprecated Use the constructor with 'Env &' as first
|
|
|
|
* argument instead
|
|
|
|
*/
|
2017-01-09 14:18:49 +00:00
|
|
|
Connection() __attribute__((deprecated))
|
2015-03-04 20:12:14 +00:00
|
|
|
: Genode::Connection<Session>(session("ram_quota=4K")),
|
|
|
|
Client(cap()) { }
|
|
|
|
};
|
2013-04-29 12:53:49 +00:00
|
|
|
|
|
|
|
#endif /* _INCLUDE__PLATFORM_SESSION__CONNECTION_H_ */
|