genode/repos/base-sel4/src/core/include/core_capability_space.h
Norman Feske e6729316ff base: uniform base-internal header structure
This patch establishes a common organization of header files
internal to the base framework. The internal headers are located at
'<repository>/src/include/base/internal/'. This structure has been
choosen to make the nature of those headers immediately clear when
included:

  #include <base/internal/lock_helper.h>

Issue #1832
2016-03-07 12:34:45 +01:00

34 lines
870 B
C++

/*
* \brief Core-specific interface to the local capability space
* \author Norman Feske
* \date 2015-05-08
*/
/*
* 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 _CORE__INCLUDE__CORE_CAPABILITY_SPACE_H_
#define _CORE__INCLUDE__CORE_CAPABILITY_SPACE_H_
/* base-internal includes */
#include <base/internal/rpc_obj_key.h>
namespace Genode { class Pd_session; }
namespace Genode { namespace Capability_space {
/**
* Create new RPC object capability for the specified entrypoint
*/
Native_capability create_rpc_obj_cap(Native_capability ep_cap,
Pd_session const *,
Rpc_obj_key);
} }
#endif /* _CORE__INCLUDE__CORE_CAPABILITY_SPACE_H_ */