mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-28 01:28:53 +00:00
4f69772ecc
The original 'Env' interface as returned by 'Genode::env()' has been renamed to 'Env_deprecated' and moved to deprecated/env.h. The new version of base/env.h contains the interface passed to modern components that use the component API via base/component.h. Issue #1832
70 lines
1.5 KiB
C++
70 lines
1.5 KiB
C++
/*
|
|
* \brief Component environment
|
|
* \author Norman Feske
|
|
* \date 2015-12-17
|
|
*/
|
|
|
|
/*
|
|
* Copyright (C) 2015 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__BASE__ENV_H_
|
|
#define _INCLUDE__BASE__ENV_H_
|
|
|
|
#include <parent/parent.h>
|
|
#include <base/entrypoint.h>
|
|
#include <ram_session/capability.h>
|
|
#include <cpu_session/capability.h>
|
|
#include <rm_session/rm_session.h>
|
|
#include <pd_session/pd_session.h>
|
|
|
|
/* maintain compatibility to deprecated API */
|
|
#include <deprecated/env.h>
|
|
|
|
|
|
namespace Genode { struct Env; }
|
|
|
|
|
|
struct Genode::Env
|
|
{
|
|
virtual Parent &parent() = 0;
|
|
|
|
/**
|
|
* RAM session of the component
|
|
*
|
|
* The RAM Session represents a budget of memory (quota) that is available
|
|
* to the component. This budget can be used to allocate RAM dataspaces.
|
|
*/
|
|
virtual Ram_session &ram() = 0;
|
|
|
|
/**
|
|
* CPU session of the component
|
|
*
|
|
* This session is used to create the threads of the component.
|
|
*/
|
|
virtual Cpu_session &cpu() = 0;
|
|
|
|
/**
|
|
* Region map of the component's address space
|
|
*/
|
|
virtual Region_map &rm() = 0;
|
|
|
|
/**
|
|
* PD session of the component as created by the parent
|
|
*/
|
|
virtual Pd_session &pd() = 0;
|
|
|
|
/**
|
|
* Entrypoint for handling RPC requests and signals
|
|
*/
|
|
virtual Entrypoint &ep() = 0;
|
|
|
|
virtual Ram_session_capability ram_session_cap() = 0;
|
|
virtual Cpu_session_capability cpu_session_cap() = 0;
|
|
};
|
|
|
|
#endif /* _INCLUDE__BASE__ENV_H_ */
|