Merge branch 'vendor/DIFFUTILS'
[dragonfly.git] / sys / dev / drm / include / linux / sched.h
1 /*
2  * Copyright (c) 2015-2018 François Tigeot <ftigeot@wolfpond.org>
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice unmodified, this list of conditions, and the following
10  *    disclaimer.
11  * 2. Redistributions in binary form must reproduce the above copyright
12  *    notice, this list of conditions and the following disclaimer in the
13  *    documentation and/or other materials provided with the distribution.
14  *
15  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
16  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
17  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
18  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
19  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
20  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
21  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
22  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
24  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25  */
26
27 #ifndef _LINUX_SCHED_H_
28 #define _LINUX_SCHED_H_
29
30 #include <linux/capability.h>
31 #include <linux/threads.h>
32 #include <linux/kernel.h>
33 #include <linux/types.h>
34 #include <linux/jiffies.h>
35 #include <linux/cpumask.h>
36 #include <linux/errno.h>
37 #include <linux/mm_types.h>
38
39 #include <asm/page.h>
40
41 #include <linux/compiler.h>
42 #include <linux/completion.h>
43 #include <linux/pid.h>
44 #include <linux/rcupdate.h>
45 #include <linux/rculist.h>
46
47 #include <linux/time.h>
48 #include <linux/timer.h>
49 #include <linux/hrtimer.h>
50 #include <linux/gfp.h>
51
52 #include <sys/param.h>
53 #include <sys/systm.h>
54 #include <sys/proc.h>
55 #include <sys/sched.h>
56 #include <sys/signal2.h>
57
58 #define TASK_RUNNING            0
59 #define TASK_INTERRUPTIBLE      1
60 #define TASK_UNINTERRUPTIBLE    2
61
62 /*
63  * schedule_timeout - sleep until timeout
64  * @timeout: timeout value in jiffies
65  */
66 static inline long
67 schedule_timeout(signed long timeout)
68 {
69         static int dummy;
70
71         if (timeout < 0) {
72                 kprintf("schedule_timeout(): timeout cannot be negative\n");
73                 return 0;
74         }
75
76         tsleep(&dummy, 0, "lstim", timeout);
77
78         return 0;
79 }
80
81 #define TASK_COMM_LEN   MAXCOMLEN
82
83 #define signal_pending(lp)      CURSIG(lp)
84
85 /*
86  * local_clock: fast time source, monotonic on the same cpu
87  */
88 static inline uint64_t
89 local_clock(void)
90 {
91         struct timespec ts;
92
93         getnanouptime(&ts);
94         return (ts.tv_sec * NSEC_PER_SEC) + ts.tv_nsec;
95 }
96
97 #define MAX_SCHEDULE_TIMEOUT    LONG_MAX
98
99 static inline void
100 yield(void)
101 {
102         lwkt_yield();
103 }
104
105 static inline int
106 wake_up_process(struct proc *tsk) {
107         /* Among other things, this function is supposed to act as
108          * a barrier */
109         smp_wmb();
110
111         return 0;
112 }
113
114 static inline int
115 signal_pending_state(long state, struct lwp *lp)
116 {
117         sigset_t pending_set;
118
119         if (!(state & TASK_INTERRUPTIBLE))
120                 return 0;
121
122         pending_set = lwp_sigpend(lp);
123
124         return SIGISMEMBER(pending_set, SIGKILL);
125 }
126
127 /* Explicit rescheduling in order to reduce latency */
128 static inline int
129 cond_resched(void)
130 {
131         lwkt_yield();
132         return 0;
133 }
134
135 #endif  /* _LINUX_SCHED_H_ */