1 | /* $Id: waitqueue.c,v 1.1.1.1 2003/07/02 13:57:04 eleph Exp $ */
|
---|
2 | /*
|
---|
3 | * OS/2 implementation of Linux wait queue kernel services (stubs)
|
---|
4 | *
|
---|
5 | * (C) 2000-2002 InnoTek Systemberatung GmbH
|
---|
6 | * (C) 2000-2001 Sander van Leeuwen (sandervl@xs4all.nl)
|
---|
7 | *
|
---|
8 | * This program is free software; you can redistribute it and/or
|
---|
9 | * modify it under the terms of the GNU General Public License as
|
---|
10 | * published by the Free Software Foundation; either version 2 of
|
---|
11 | * the License, or (at your option) any later version.
|
---|
12 | *
|
---|
13 | * This program is distributed in the hope that it will be useful,
|
---|
14 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
16 | * GNU General Public License for more details.
|
---|
17 | *
|
---|
18 | * You should have received a copy of the GNU General Public
|
---|
19 | * License along with this program; if not, write to the Free
|
---|
20 | * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139,
|
---|
21 | * USA.
|
---|
22 | *
|
---|
23 | */
|
---|
24 |
|
---|
25 | #include "linux.h"
|
---|
26 | #include <linux/init.h>
|
---|
27 | #include <linux/poll.h>
|
---|
28 | #include <asm/uaccess.h>
|
---|
29 | #include <asm/hardirq.h>
|
---|
30 | #include <dbgos2.h>
|
---|
31 |
|
---|
32 | //******************************************************************************
|
---|
33 | //******************************************************************************
|
---|
34 | void init_waitqueue_head(wait_queue_head_t *q)
|
---|
35 | {
|
---|
36 | // dprintf(("WARNING: init_waitqueue_head STUB"));
|
---|
37 | }
|
---|
38 | //******************************************************************************
|
---|
39 | //******************************************************************************
|
---|
40 | void add_wait_queue(wait_queue_head_t *q, wait_queue_t * wait)
|
---|
41 | {
|
---|
42 | // dprintf3(("WARNING: add_wait_queue STUB"));
|
---|
43 | }
|
---|
44 | //******************************************************************************
|
---|
45 | //******************************************************************************
|
---|
46 | void add_wait_queue_exclusive(wait_queue_head_t *q)
|
---|
47 | {
|
---|
48 | // dprintf3(("WARNING: add_wait_queue_exclusive STUB"));
|
---|
49 | }
|
---|
50 | //******************************************************************************
|
---|
51 | //******************************************************************************
|
---|
52 | void remove_wait_queue(wait_queue_head_t *q, wait_queue_t * wait)
|
---|
53 | {
|
---|
54 | // dprintf(("WARNING: remove_wait_queue STUB"));
|
---|
55 | }
|
---|
56 | //******************************************************************************
|
---|
57 | //******************************************************************************
|
---|
58 | long interruptible_sleep_on_timeout(wait_queue_head_t *q, signed long timeout)
|
---|
59 | {
|
---|
60 | dprintf(("WARNING: interruptible_sleep_on_timeout STUB"));
|
---|
61 | return 1;
|
---|
62 | }
|
---|
63 | //******************************************************************************
|
---|
64 | //******************************************************************************
|
---|
65 | void interruptible_sleep_on(wait_queue_head_t *q)
|
---|
66 | {
|
---|
67 | dprintf(("WARNING: interruptible_sleep_on STUB"));
|
---|
68 | }
|
---|
69 | //******************************************************************************
|
---|
70 | //******************************************************************************
|
---|
71 | void __wake_up(wait_queue_head_t *q, unsigned int mode)
|
---|
72 | {
|
---|
73 | dprintf3(("WARNING: __wake_up STUB"));
|
---|
74 | }
|
---|
75 | //******************************************************************************
|
---|
76 | //******************************************************************************
|
---|
77 | void init_waitqueue_entry(wait_queue_t *q, struct task_struct *p)
|
---|
78 | {
|
---|
79 | // dprintf(("WARNING: init_waitqueue_entry STUB"));
|
---|
80 | }
|
---|
81 | //******************************************************************************
|
---|
82 | //******************************************************************************
|
---|
83 | int waitqueue_active(wait_queue_head_t *q)
|
---|
84 | {
|
---|
85 | // dprintf(("WARNING: waitqueue_active STUB"));
|
---|
86 | return 0;
|
---|
87 | }
|
---|
88 | //******************************************************************************
|
---|
89 | //******************************************************************************
|
---|