2011-12-22 15:19:25 +00:00
|
|
|
/*
|
|
|
|
* \brief Connection to RM service
|
|
|
|
* \author Norman Feske
|
|
|
|
* \date 2008-08-22
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
2017-02-20 12:23:52 +00:00
|
|
|
* Copyright (C) 2008-2017 Genode Labs GmbH
|
2011-12-22 15:19:25 +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.
|
2011-12-22 15:19:25 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _INCLUDE__RM_SESSION__CONNECTION_H_
|
|
|
|
#define _INCLUDE__RM_SESSION__CONNECTION_H_
|
|
|
|
|
|
|
|
#include <rm_session/client.h>
|
|
|
|
#include <base/connection.h>
|
|
|
|
|
2015-03-04 20:12:14 +00:00
|
|
|
namespace Genode { struct Rm_connection; }
|
|
|
|
|
|
|
|
|
|
|
|
struct Genode::Rm_connection : Connection<Rm_session>, Rm_session_client
|
|
|
|
{
|
|
|
|
enum { RAM_QUOTA = 64*1024 };
|
|
|
|
|
2016-05-10 15:24:51 +00:00
|
|
|
/**
|
|
|
|
* Constructor
|
|
|
|
*/
|
|
|
|
Rm_connection(Env &env)
|
|
|
|
:
|
2017-05-07 20:03:25 +00:00
|
|
|
Connection<Rm_session>(env, session(env.parent(), "ram_quota=%u, cap_quota=%u",
|
|
|
|
RAM_QUOTA, CAP_QUOTA)),
|
2016-05-10 15:24:51 +00:00
|
|
|
Rm_session_client(cap())
|
|
|
|
{ }
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Constructor
|
|
|
|
*
|
|
|
|
* \noapi
|
|
|
|
* \deprecated Use the constructor with 'Env &' as first
|
|
|
|
* argument instead
|
|
|
|
*/
|
2017-01-09 14:18:49 +00:00
|
|
|
Rm_connection() __attribute__((deprecated))
|
2016-05-10 15:24:51 +00:00
|
|
|
:
|
2017-05-07 20:03:25 +00:00
|
|
|
Connection<Rm_session>(session("ram_quota=%u, cap_quota=%u", RAM_QUOTA, CAP_QUOTA)),
|
2016-05-10 15:24:51 +00:00
|
|
|
Rm_session_client(cap())
|
|
|
|
{ }
|
2015-03-04 20:12:14 +00:00
|
|
|
};
|
2011-12-22 15:19:25 +00:00
|
|
|
|
|
|
|
#endif /* _INCLUDE__RM_SESSION__CONNECTION_H_ */
|