genode/repos/base/include/pd_session/connection.h

49 lines
1.2 KiB
C
Raw Normal View History

2011-12-22 15:19:25 +00:00
/*
* \brief Connection to PD service
* \author Norman Feske
* \date 2008-08-22
*/
/*
* Copyright (C) 2008-2023 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 Affero General Public License version 3.
2011-12-22 15:19:25 +00:00
*/
#ifndef _INCLUDE__PD_SESSION__CONNECTION_H_
#define _INCLUDE__PD_SESSION__CONNECTION_H_
#include <pd_session/client.h>
#include <base/connection.h>
namespace Genode { struct Pd_connection; }
2011-12-22 15:19:25 +00:00
struct Genode::Pd_connection : Connection<Pd_session>, Pd_session_client
{
enum Virt_space { UNCONSTRAIN = 0, CONSTRAIN = 1 };
Pd_connection(Env &env, Label const &label = Label(), Virt_space space = CONSTRAIN)
:
Connection<Pd_session>(env, label, Ram_quota { RAM_QUOTA },
Args("virt_space=", unsigned(space))),
Pd_session_client(cap())
{ }
struct Device_pd { };
/**
* Constructor used for creating device protection domains
*/
Pd_connection(Env &env, Device_pd)
:
Connection<Pd_session>(env, "device PD", Ram_quota { RAM_QUOTA },
Args("virt_space=", unsigned(UNCONSTRAIN), ", "
"managing_system=yes")),
Pd_session_client(cap())
{ }
};
2011-12-22 15:19:25 +00:00
#endif /* _INCLUDE__PD_SESSION__CONNECTION_H_ */