blob: 40b19845fb0c14105fea2046aa92c178c42defae (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
#ifndef _HACK_SCHED_H
#define _HACK_SCHED_H
#include <linux/wait.h>
#include <sys/signal.h>
#include <hurd/hurd_types.h>
#include <linux/kernel.h>
#include <linux/net.h>
extern unsigned long intr_count;
extern unsigned long volatile jiffies;
#define HZ 100
extern struct task_struct *current;
struct task_struct
{
uid_t pgrp, pid;
int flags;
int timeout;
int signal;
int blocked;
int state;
int isroot;
};
/* FLAGS in task_struct's. */
#define PF_EXITING 1
/* STATE in task_struct's. */
#define TASK_INTERRUPTIBLE 1
#define TASK_RUNNING 2
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 *);
void schedule (void);
#define SEL_IN SELECT_READ
#define SEL_OUT SELECT_WRITE
#define SEL_EX SELECT_URG
int send_sig (u_long, struct task_struct *, int);
int fetch_current_time (void);
struct timeval fetch_xtime (void);
#define CURRENT_TIME (fetch_current_time())
#define xtime (fetch_xtime ())
#endif
|