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

67 lines
1.7 KiB
C
Raw Normal View History

2011-12-22 16:19:25 +01:00
/*
* \brief Platform-specific type definitions
* \author Norman Feske
* \date 2009-10-02
*/
/*
2012-01-03 15:35:05 +01:00
* Copyright (C) 2009-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 Genode {
typedef volatile int Native_lock;
struct Native_thread
{
int ec_sel; /* NOVA cap selector for execution context */
int sc_sel; /* NOVA cap selector for scheduling context */
int rs_sel; /* NOVA cap selector for running semaphore */
int pd_sel; /* NOVA cap selector of protection domain */
int exc_pt_sel; /* base of event portal window */
};
typedef Native_thread Native_thread_id;
inline bool operator == (Native_thread_id t1, Native_thread_id t2) { return t1.ec_sel == t2.ec_sel; }
inline bool operator != (Native_thread_id t1, Native_thread_id t2) { return t1.ec_sel != t2.ec_sel; }
class Native_utcb
{
private:
/**
* Size of the NOVA-specific user-level thread-control block
*/
enum { UTCB_SIZE = 4096 };
/**
* User-level thread control block
*
* The UTCB is one 4K page, shared between the kernel and the
* user process. It is not backed by a dataspace but provided
* by the kernel.
*/
long _utcb[UTCB_SIZE/sizeof(long)];
};
struct Portal_checker
2011-12-22 16:19:25 +01:00
{
static bool valid(int pt) { return pt != 0; }
static int invalid() { return 0; }
2011-12-22 16:19:25 +01:00
};
typedef Native_capability_tpl<int, Portal_checker> Native_capability;
2011-12-22 16:19:25 +01:00
typedef int Native_connection_state;
}
#endif /* _INCLUDE__BASE__NATIVE_TYPES_H_ */