/* * \brief Linux protection domain facility * \author Norman Feske * \date 2006-06-13 * * Pretty dumb. */ /* * Copyright (C) 2006-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 _CORE__INCLUDE__PLATFORM_PD_H_ #define _CORE__INCLUDE__PLATFORM_PD_H_ #include #include namespace Genode { struct Platform_pd; class Platform_thread; } struct Genode::Platform_pd { Platform_pd(Allocator &, char const *) { } bool bind_thread(Platform_thread &) { return true; } void assign_parent(Capability) { } }; #endif /* _CORE__INCLUDE__PLATFORM_PD_H_ */