summaryrefslogtreecommitdiff
path: root/pfinet/linux/sched.h
diff options
context:
space:
mode:
Diffstat (limited to 'pfinet/linux/sched.h')
-rw-r--r--pfinet/linux/sched.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/pfinet/linux/sched.h b/pfinet/linux/sched.h
index 45c7cc8e..51b1b20e 100644
--- a/pfinet/linux/sched.h
+++ b/pfinet/linux/sched.h
@@ -9,6 +9,7 @@
#include <sys/time.h>
#include "mapped-time.h"
#include <assert.h>
+#include <mach.h>
extern unsigned long intr_count;
#define jiffies (fetch_jiffies ())
@@ -23,6 +24,7 @@ struct task_struct
int blocked;
int state;
int isroot;
+ thread_t thread;
};
/* FLAGS in task_struct's. */
@@ -31,15 +33,14 @@ struct task_struct
#define TASK_INTERRUPTIBLE 1
#define TASK_RUNNING 2
-extern inline int suser ()
+extern inline int
+suser ()
{
return current->isroot;
};
void wake_up_interruptible (struct wait_queue **);
void interruptible_sleep_on (struct wait_queue **);
-void add_wait_queue (struct wait_queue **, struct wait_queue *);
-void remove_wait_queue (struct wait_queue **, struct wait_queue *);
void select_wait (struct wait_queue **, select_table *);