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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
|
/*
Copyright (C) 1995 Free Software Foundation, Inc.
Written by Michael I. Bushnell, p/BSG.
This file is part of the GNU Hurd.
The GNU Hurd is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License as
published by the Free Software Foundation; either version 2, or (at
your option) any later version.
The GNU Hurd is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA. */
#include <asm/system.h>
#include <linux/sched.h>
struct mutex global_lock = MUTEX_INITIALIZER;
struct task_struct *current;
/* Call this before doing kernel-level calls; this enforces the
non-preemptibility of the kernel. */
void
start_kernel (struct task_struct *task)
{
mutex_lock (&global_lock);
current = task;
}
/* Call this when done doing a kernel-level call. */
void
end_kernel (void)
{
current = 0;
mutex_unlock (&global_lock);
}
void
interruptible_sleep_on (struct wait_queue **p)
{
condition_wait (&(*p)->c, &global_lock);
}
void
wake_up_interruptible (struct wait_queue **p)
{
condition_broadcast (&(*p)->c);
}
/* Wake up the owner of the SOCK. If HOW is zero, then just
send SIGIO. If HOW is one, then send SIGIO only if the
SO_WAITDATA flag is off. If HOW is two, then send SIGIO
only if the SO_NOSPACE flag is on, and also clear it. */
int
sock_wake_async (struct socket *sock, int how)
{
/* For now, do nothing. XXX */
return 0;
}
/* Record that we are doing a select. The table P is passed
to the protocol-specific select routine and then echoed
through to us. The WAIT_ADDRESS is what will be woken up
when I/O becomes possible. */
void
select_wait (struct wait_queue **wait_address, select_table *p)
{
/* For now, do nothing. XXX */
return;
}
|