source: rtems-libbsd/rtemsbsd/powerpc/include/linux/wait.h @ 0f1d2f6

55-freebsd-126-freebsd-12
Last change on this file since 0f1d2f6 was cd089b9, checked in by Sebastian Huber <sebastian.huber@…>, on 05/05/17 at 06:47:39

Linux update to 4.11-rc5

Linux baseline a71c9a1c779f2499fb2afc0553e543f18aff6edf (4.11-rc5).

  • Property mode set to 100644
File size: 3.8 KB
Line 
1/*-
2 * Copyright (c) 2010 Isilon Systems, Inc.
3 * Copyright (c) 2010 iX Systems, Inc.
4 * Copyright (c) 2010 Panasas, Inc.
5 * Copyright (c) 2013, 2014 Mellanox Technologies, Ltd.
6 * All rights reserved.
7 *
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
10 * are met:
11 * 1. Redistributions of source code must retain the above copyright
12 *    notice unmodified, this list of conditions, and the following
13 *    disclaimer.
14 * 2. Redistributions in binary form must reproduce the above copyright
15 *    notice, this list of conditions and the following disclaimer in the
16 *    documentation and/or other materials provided with the distribution.
17 *
18 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
19 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
20 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
21 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
22 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
23 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
27 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28 *
29 * $FreeBSD$
30 */
31#ifndef _LINUX_WAIT_H_
32#define _LINUX_WAIT_H_
33
34#include <linux/spinlock.h>
35#include <linux/sched.h>
36#include <linux/list.h>
37
38#include <sys/param.h>
39#include <sys/systm.h>
40#include <sys/sleepqueue.h>
41#include <sys/kernel.h>
42#include <sys/proc.h>
43
44typedef struct {
45} wait_queue_t;
46
47typedef struct {
48        unsigned int    wchan;
49} wait_queue_head_t;
50
51#define init_waitqueue_head(x) \
52    do { } while (0)
53
54#define DECLARE_WAIT_QUEUE_HEAD(x) wait_queue_head_t x = { 0 }
55
56static inline void
57__wake_up(wait_queue_head_t *q, int all)
58{
59        int wakeup_swapper;
60        void *c;
61
62        c = &q->wchan;
63        sleepq_lock(c);
64        if (all)
65                wakeup_swapper = sleepq_broadcast(c, SLEEPQ_SLEEP, 0, 0);
66        else
67                wakeup_swapper = sleepq_signal(c, SLEEPQ_SLEEP, 0, 0);
68        sleepq_release(c);
69        if (wakeup_swapper)
70                kick_proc0();
71}
72
73#define wake_up(q)                              __wake_up(q, 0)
74#define wake_up_nr(q, nr)                       __wake_up(q, 1)
75#define wake_up_all(q)                          __wake_up(q, 1)
76#define wake_up_interruptible(q)                __wake_up(q, 0)
77#define wake_up_interruptible_nr(q, nr)         __wake_up(q, 1)
78#define wake_up_interruptible_all(q, nr)        __wake_up(q, 1)
79
80#define wait_event(q, cond)                                             \
81do {                                                                    \
82        void *c = &(q).wchan;                                           \
83        if (!(cond)) {                                                  \
84                for (;;) {                                              \
85                        sleepq_lock(c);                                 \
86                        if (cond) {                                     \
87                                sleepq_release(c);                      \
88                                break;                                  \
89                        }                                               \
90                        sleepq_add(c, NULL, "completion", SLEEPQ_SLEEP, 0); \
91                        sleepq_wait(c, 0);                              \
92                }                                                       \
93        }                                                               \
94} while (0)
95
96#ifndef __rtems__
97#define wait_event_interruptible(q, cond)                               \
98({                                                                      \
99        void *c = &(q).wchan;                                           \
100        int _error;                                                     \
101                                                                        \
102        _error = 0;                                                     \
103        if (!(cond)) {                                                  \
104                for (; _error == 0;) {                                  \
105                        sleepq_lock(c);                                 \
106                        if (cond) {                                     \
107                                sleepq_release(c);                      \
108                                break;                                  \
109                        }                                               \
110                        sleepq_add(c, NULL, "completion",               \
111                            SLEEPQ_SLEEP | SLEEPQ_INTERRUPTIBLE, 0);    \
112                        if (sleepq_wait_sig(c, 0))                      \
113                                _error = -ERESTARTSYS;                  \
114                }                                                       \
115        }                                                               \
116        -_error;                                                        \
117})
118#else /* __rtems__ */
119#define wait_event_interruptible(q, cond)                               \
120({                                                                      \
121        wait_event(q, cond);                                            \
122        0;                                                              \
123})
124#endif /* __rtems__ */
125
126static inline int
127waitqueue_active(wait_queue_head_t *q)
128{
129        return 0;       /* XXX: not really implemented */
130}
131
132#define DEFINE_WAIT(name)       \
133        wait_queue_t name = {}
134
135static inline void
136prepare_to_wait(wait_queue_head_t *q, wait_queue_t *wait, int state)
137{
138}
139
140static inline void
141finish_wait(wait_queue_head_t *q, wait_queue_t *wait)
142{
143}
144
145#endif  /* _LINUX_WAIT_H_ */
Note: See TracBrowser for help on using the repository browser.