summaryrefslogtreecommitdiff
path: root/libl4/l4
diff options
context:
space:
mode:
authormarcus <marcus>2004-10-28 03:55:34 +0000
committermarcus <marcus>2004-10-28 03:55:34 +0000
commit9eea2a623a79c362ed88954c68fce82361758150 (patch)
tree98eda333f19709bab4cb2f92a61e28baecfae2f0 /libl4/l4
parent1fa1d33e34670acd6e78664c1a80ca2e4a4cf736 (diff)
2004-10-28 Marcus Brinkmann <marcus@gnu.org>
* l4/compat/thread.h (L4_ThreadId_t): Move to ... * l4/compat/types.h (L4_ThreadId_t): ... here.
Diffstat (limited to 'libl4/l4')
-rw-r--r--libl4/l4/compat/thread.h5
-rw-r--r--libl4/l4/compat/types.h7
2 files changed, 7 insertions, 5 deletions
diff --git a/libl4/l4/compat/thread.h b/libl4/l4/compat/thread.h
index f34bf99..be8f6e0 100644
--- a/libl4/l4/compat/thread.h
+++ b/libl4/l4/compat/thread.h
@@ -28,11 +28,6 @@
/* Generic Programming Interface. */
-typedef struct
-{
- L4_Word_t raw;
-} L4_ThreadId_t;
-
#define L4_nilthread ((L4_ThreadId_t) { .raw = _L4_nilthread })
#define L4_anythread ((L4_ThreadId_t) { .raw = _L4_anythread })
#define L4_anylocalthread ((L4_ThreadId_t) { .raw = _L4_anylocalthread })
diff --git a/libl4/l4/compat/types.h b/libl4/l4/compat/types.h
index 43d6c5c..2b72161 100644
--- a/libl4/l4/compat/types.h
+++ b/libl4/l4/compat/types.h
@@ -34,3 +34,10 @@ typedef struct
{
L4_Word_t raw;
} L4_Fpage_t;
+
+
+typedef struct
+{
+ L4_Word_t raw;
+} L4_ThreadId_t;
+