genode/repos/base-nova/src/include/base/internal/parent_cap.h
2017-02-28 12:59:29 +01:00

38 lines
918 B
C++

/*
* \brief Interface to obtain the parent capability for the component
* \author Norman Feske
* \author Alexander Boettcher
* \date 2010-01-26
*
* The parent portal is, by convention, capability selector 'PT_CAP_PARENT'
* supplied with the initial portals when the PD is created.
*/
/*
* Copyright (C) 2010-2017 Genode Labs GmbH
*
* This file is part of the Genode OS framework, which is distributed
* under the terms of the GNU Affero General Public License version 3.
*/
#ifndef _INCLUDE__BASE__INTERNAL__PARENT_CAP_H_
#define _INCLUDE__BASE__INTERNAL__PARENT_CAP_H_
/* Genode includes */
#include <parent/capability.h>
/* NOVA includes */
#include <nova/capability_space.h>
namespace Genode {
static inline Parent_capability parent_cap()
{
return reinterpret_cap_cast<Parent>(
Capability_space::import(Nova::PT_SEL_PARENT));
}
}
#endif /* _INCLUDE__BASE__INTERNAL__PARENT_CAP_H_ */