genode/base-pistachio/include/base/native_types.h

75 lines
1.7 KiB
C
Raw Normal View History

2011-12-22 16:19:25 +01:00
/*
* \brief Native types on Pistachio
* \author Norman Feske
* \date 2008-07-26
*/
/*
2012-01-03 15:35:05 +01:00
* Copyright (C) 2008-2012 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 _INCLUDE__BASE__NATIVE_TYPES_H_
#define _INCLUDE__BASE__NATIVE_TYPES_H_
#include <base/native_capability.h>
2011-12-22 16:19:25 +01:00
namespace Pistachio {
#include <l4/types.h>
struct Cap_dst_policy
{
typedef L4_ThreadId_t Dst;
static bool valid(Dst tid) { return !L4_IsNilThread(tid); }
static Dst invalid() { return L4_nilthread; }
};
2011-12-22 16:19:25 +01:00
}
namespace Genode {
typedef volatile int Native_lock;
class Platform_thread;
typedef Pistachio::L4_ThreadId_t Native_thread_id;
struct Native_thread
{
Native_thread_id l4id;
/**
* Only used in core
*
* For 'Thread' objects created within core, 'pt' points to
* the physical thread object, which is going to be destroyed
* on destruction of the 'Thread'.
*/
Platform_thread *pt;
};
inline unsigned long convert_native_thread_id_to_badge(Native_thread_id tid)
{
/*
* Pistachio has no server-defined badges for page-fault messages.
* Therefore, we have to interpret the sender ID as badge.
*/
return tid.raw;
}
/**
* Empty UTCB type expected by the thread library
*
* On this kernel, UTCBs are not placed within the the context area. Each
* thread can request its own UTCB pointer using the kernel interface.
*/
typedef struct { } Native_utcb;
typedef Native_capability_tpl<Pistachio::Cap_dst_policy> Native_capability;
2011-12-22 16:19:25 +01:00
typedef Pistachio::L4_ThreadId_t Native_connection_state;
}
#endif /* _INCLUDE__BASE__NATIVE_TYPES_H_ */