2011-12-22 15:19:25 +00:00
|
|
|
/*
|
|
|
|
* \brief Connection to RM service
|
|
|
|
* \author Norman Feske
|
|
|
|
* \date 2008-08-22
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
2013-01-10 20:44:47 +00:00
|
|
|
* Copyright (C) 2008-2013 Genode Labs GmbH
|
2011-12-22 15:19:25 +00:00
|
|
|
*
|
|
|
|
* 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__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)
|
|
|
|
:
|
|
|
|
Connection<Rm_session>(env, session(env.parent(), "ram_quota=%u", RAM_QUOTA)),
|
|
|
|
Rm_session_client(cap())
|
|
|
|
{ }
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Constructor
|
|
|
|
*
|
|
|
|
* \noapi
|
|
|
|
* \deprecated Use the constructor with 'Env &' as first
|
|
|
|
* argument instead
|
|
|
|
*/
|
|
|
|
Rm_connection()
|
|
|
|
:
|
2016-04-15 13:19:22 +00:00
|
|
|
Connection<Rm_session>(session("ram_quota=%u", RAM_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_ */
|