2016-03-11 16:32:43 +00:00
|
|
|
/*
|
|
|
|
* \brief Kernel-specific thread meta data
|
|
|
|
* \author Norman Feske
|
|
|
|
* \date 2016-03-11
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
2017-02-20 12:23:52 +00:00
|
|
|
* Copyright (C) 2016-2017 Genode Labs GmbH
|
2016-03-11 16:32:43 +00:00
|
|
|
*
|
|
|
|
* This file is part of the Genode OS framework, which is distributed
|
2017-02-20 12:23:52 +00:00
|
|
|
* under the terms of the GNU Affero General Public License version 3.
|
2016-03-11 16:32:43 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _INCLUDE__BASE__INTERNAL__NATIVE_THREAD_H_
|
|
|
|
#define _INCLUDE__BASE__INTERNAL__NATIVE_THREAD_H_
|
|
|
|
|
|
|
|
#include <base/stdint.h>
|
|
|
|
#include <base/native_capability.h>
|
|
|
|
|
|
|
|
namespace Genode {
|
|
|
|
|
|
|
|
struct Native_thread;
|
|
|
|
class Platform_thread;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
struct Genode::Native_thread
|
|
|
|
{
|
|
|
|
Platform_thread *platform_thread;
|
|
|
|
Native_capability cap;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* _INCLUDE__BASE__INTERNAL__NATIVE_THREAD_H_ */
|