genode/repos/base-linux/src/core/include/platform_pd.h

26 lines
597 B
C
Raw Normal View History

2011-12-22 16:19:25 +01:00
/*
* \brief Linux protection domain facility
* \author Norman Feske
* \date 2006-06-13
*
* Pretty dumb.
*/
/*
2013-01-10 21:44:47 +01:00
* Copyright (C) 2006-2013 Genode Labs GmbH
2011-12-22 16:19:25 +01:00
*
* 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__LINUX__PLATFORM_PD_H_
#define _CORE__INCLUDE__LINUX__PLATFORM_PD_H_
#include <base/allocator.h>
2011-12-22 16:19:25 +01:00
namespace Genode { struct Platform_pd; }
struct Genode::Platform_pd { Platform_pd(Allocator *, char const *) { } };
2011-12-22 16:19:25 +01:00
#endif /* _CORE__INCLUDE__LINUX__PLATFORM_PD_H_ */