1 | /*
|
---|
2 | * Copyright (c) 2001-2007 Jakub Jermar
|
---|
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 | *
|
---|
9 | * - Redistributions of source code must retain the above copyright
|
---|
10 | * notice, this list of conditions and the following disclaimer.
|
---|
11 | * - 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 | * - The name of the author may not be used to endorse or promote products
|
---|
15 | * derived from this software without specific prior written permission.
|
---|
16 | *
|
---|
17 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
---|
18 | * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
---|
19 | * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
---|
20 | * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
---|
21 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
---|
22 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
---|
23 | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
---|
24 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
---|
25 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
---|
26 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
---|
27 | */
|
---|
28 |
|
---|
29 | /** @addtogroup genericproc
|
---|
30 | * @{
|
---|
31 | */
|
---|
32 | /** @file
|
---|
33 | */
|
---|
34 |
|
---|
35 | #ifndef KERN_THREAD_H_
|
---|
36 | #define KERN_THREAD_H_
|
---|
37 |
|
---|
38 | #include <synch/waitq.h>
|
---|
39 | #include <proc/task.h>
|
---|
40 | #include <time/timeout.h>
|
---|
41 | #include <cpu.h>
|
---|
42 | #include <synch/spinlock.h>
|
---|
43 | #include <adt/avl.h>
|
---|
44 | #include <mm/slab.h>
|
---|
45 | #include <arch/cpu.h>
|
---|
46 | #include <mm/tlb.h>
|
---|
47 | #include <proc/uarg.h>
|
---|
48 | #include <udebug/udebug.h>
|
---|
49 | #include <sysinfo/abi.h>
|
---|
50 |
|
---|
51 | #define THREAD_STACK_SIZE STACK_SIZE
|
---|
52 | #define THREAD_NAME_BUFLEN 20
|
---|
53 |
|
---|
54 | extern const char *thread_states[];
|
---|
55 |
|
---|
56 | /* Thread flags */
|
---|
57 |
|
---|
58 | /** Thread cannot be migrated to another CPU.
|
---|
59 | *
|
---|
60 | * When using this flag, the caller must set cpu in the thread_t
|
---|
61 | * structure manually before calling thread_ready (even on uniprocessor).
|
---|
62 | *
|
---|
63 | */
|
---|
64 | #define THREAD_FLAG_WIRED (1 << 0)
|
---|
65 |
|
---|
66 | /** Thread was migrated to another CPU and has not run yet. */
|
---|
67 | #define THREAD_FLAG_STOLEN (1 << 1)
|
---|
68 |
|
---|
69 | /** Thread executes in userspace. */
|
---|
70 | #define THREAD_FLAG_USPACE (1 << 2)
|
---|
71 |
|
---|
72 | /** Thread will be attached by the caller. */
|
---|
73 | #define THREAD_FLAG_NOATTACH (1 << 3)
|
---|
74 |
|
---|
75 | /** Thread structure. There is one per thread. */
|
---|
76 | typedef struct thread {
|
---|
77 | link_t rq_link; /**< Run queue link. */
|
---|
78 | link_t wq_link; /**< Wait queue link. */
|
---|
79 | link_t th_link; /**< Links to threads within containing task. */
|
---|
80 |
|
---|
81 | /** Threads linkage to the threads_tree. */
|
---|
82 | avltree_node_t threads_tree_node;
|
---|
83 |
|
---|
84 | /** Lock protecting thread structure.
|
---|
85 | *
|
---|
86 | * Protects the whole thread structure except list links above.
|
---|
87 | */
|
---|
88 | IRQ_SPINLOCK_DECLARE(lock);
|
---|
89 |
|
---|
90 | char name[THREAD_NAME_BUFLEN];
|
---|
91 |
|
---|
92 | /** Function implementing the thread. */
|
---|
93 | void (*thread_code)(void *);
|
---|
94 | /** Argument passed to thread_code() function. */
|
---|
95 | void *thread_arg;
|
---|
96 |
|
---|
97 | /**
|
---|
98 | * From here, the stored context is restored
|
---|
99 | * when the thread is scheduled.
|
---|
100 | */
|
---|
101 | context_t saved_context;
|
---|
102 |
|
---|
103 | /**
|
---|
104 | * From here, the stored timeout context
|
---|
105 | * is restored when sleep times out.
|
---|
106 | */
|
---|
107 | context_t sleep_timeout_context;
|
---|
108 |
|
---|
109 | /**
|
---|
110 | * From here, the stored interruption context
|
---|
111 | * is restored when sleep is interrupted.
|
---|
112 | */
|
---|
113 | context_t sleep_interruption_context;
|
---|
114 |
|
---|
115 | /** If true, the thread can be interrupted from sleep. */
|
---|
116 | bool sleep_interruptible;
|
---|
117 | /** Wait queue in which this thread sleeps. */
|
---|
118 | waitq_t *sleep_queue;
|
---|
119 | /** Timeout used for timeoutable sleeping. */
|
---|
120 | timeout_t sleep_timeout;
|
---|
121 | /** Flag signalling sleep timeout in progress. */
|
---|
122 | volatile bool timeout_pending;
|
---|
123 |
|
---|
124 | /**
|
---|
125 | * True if this thread is executing copy_from_uspace().
|
---|
126 | * False otherwise.
|
---|
127 | */
|
---|
128 | bool in_copy_from_uspace;
|
---|
129 |
|
---|
130 | /**
|
---|
131 | * True if this thread is executing copy_to_uspace().
|
---|
132 | * False otherwise.
|
---|
133 | */
|
---|
134 | bool in_copy_to_uspace;
|
---|
135 |
|
---|
136 | /**
|
---|
137 | * If true, the thread will not go to sleep at all and will call
|
---|
138 | * thread_exit() before returning to userspace.
|
---|
139 | */
|
---|
140 | bool interrupted;
|
---|
141 |
|
---|
142 | /**
|
---|
143 | * If true, the scheduler will print a stack trace
|
---|
144 | * to the kernel console upon scheduling this thread.
|
---|
145 | */
|
---|
146 | bool btrace;
|
---|
147 |
|
---|
148 | /** If true, thread_join_timeout() cannot be used on this thread. */
|
---|
149 | bool detached;
|
---|
150 | /** Waitq for thread_join_timeout(). */
|
---|
151 | waitq_t join_wq;
|
---|
152 | /** Link used in the joiner_head list. */
|
---|
153 | link_t joiner_link;
|
---|
154 |
|
---|
155 | fpu_context_t *saved_fpu_context;
|
---|
156 | int fpu_context_exists;
|
---|
157 |
|
---|
158 | /*
|
---|
159 | * Defined only if thread doesn't run.
|
---|
160 | * It means that fpu context is in CPU that last time executes this
|
---|
161 | * thread. This disables migration.
|
---|
162 | */
|
---|
163 | int fpu_context_engaged;
|
---|
164 |
|
---|
165 | /** Thread's state. */
|
---|
166 | state_t state;
|
---|
167 | /** Thread's flags. */
|
---|
168 | unsigned int flags;
|
---|
169 |
|
---|
170 | /** Thread's CPU. */
|
---|
171 | cpu_t *cpu;
|
---|
172 | /** Containing task. */
|
---|
173 | task_t *task;
|
---|
174 |
|
---|
175 | /** Ticks before preemption. */
|
---|
176 | uint64_t ticks;
|
---|
177 |
|
---|
178 | /** Thread accounting. */
|
---|
179 | uint64_t ucycles;
|
---|
180 | uint64_t kcycles;
|
---|
181 | /** Last sampled cycle. */
|
---|
182 | uint64_t last_cycle;
|
---|
183 | /** Thread doesn't affect accumulated accounting. */
|
---|
184 | bool uncounted;
|
---|
185 |
|
---|
186 | /** Thread's priority. Implemented as index to CPU->rq */
|
---|
187 | int priority;
|
---|
188 | /** Thread ID. */
|
---|
189 | thread_id_t tid;
|
---|
190 |
|
---|
191 | /** Architecture-specific data. */
|
---|
192 | thread_arch_t arch;
|
---|
193 |
|
---|
194 | /** Thread's kernel stack. */
|
---|
195 | uint8_t *kstack;
|
---|
196 |
|
---|
197 | #ifdef CONFIG_UDEBUG
|
---|
198 | /** Debugging stuff */
|
---|
199 | udebug_thread_t udebug;
|
---|
200 | #endif /* CONFIG_UDEBUG */
|
---|
201 | } thread_t;
|
---|
202 |
|
---|
203 | /** Thread list lock.
|
---|
204 | *
|
---|
205 | * This lock protects the threads_tree.
|
---|
206 | * Must be acquired before T.lock for each T of type thread_t.
|
---|
207 | *
|
---|
208 | */
|
---|
209 | IRQ_SPINLOCK_EXTERN(threads_lock);
|
---|
210 |
|
---|
211 | /** AVL tree containing all threads. */
|
---|
212 | extern avltree_t threads_tree;
|
---|
213 |
|
---|
214 | extern void thread_init(void);
|
---|
215 | extern thread_t *thread_create(void (*)(void *), void *, task_t *,
|
---|
216 | unsigned int, const char *, bool);
|
---|
217 | extern void thread_attach(thread_t *, task_t *);
|
---|
218 | extern void thread_ready(thread_t *);
|
---|
219 | extern void thread_exit(void) __attribute__((noreturn));
|
---|
220 |
|
---|
221 | #ifndef thread_create_arch
|
---|
222 | extern void thread_create_arch(thread_t *);
|
---|
223 | #endif
|
---|
224 |
|
---|
225 | #ifndef thr_constructor_arch
|
---|
226 | extern void thr_constructor_arch(thread_t *);
|
---|
227 | #endif
|
---|
228 |
|
---|
229 | #ifndef thr_destructor_arch
|
---|
230 | extern void thr_destructor_arch(thread_t *);
|
---|
231 | #endif
|
---|
232 |
|
---|
233 | extern void thread_sleep(uint32_t);
|
---|
234 | extern void thread_usleep(uint32_t);
|
---|
235 |
|
---|
236 | #define thread_join(t) \
|
---|
237 | thread_join_timeout((t), SYNCH_NO_TIMEOUT, SYNCH_FLAGS_NONE)
|
---|
238 |
|
---|
239 | extern int thread_join_timeout(thread_t *, uint32_t, unsigned int);
|
---|
240 | extern void thread_detach(thread_t *);
|
---|
241 |
|
---|
242 | extern void thread_print_list(bool);
|
---|
243 | extern void thread_destroy(thread_t *, bool);
|
---|
244 | extern thread_t *thread_find_by_id(thread_id_t);
|
---|
245 | extern void thread_update_accounting(bool);
|
---|
246 | extern bool thread_exists(thread_t *);
|
---|
247 | extern void thread_stack_trace(thread_id_t);
|
---|
248 |
|
---|
249 | /** Fpu context slab cache. */
|
---|
250 | extern slab_cache_t *fpu_context_slab;
|
---|
251 |
|
---|
252 | /* Thread syscall prototypes. */
|
---|
253 | extern sysarg_t sys_thread_create(uspace_arg_t *, char *, size_t,
|
---|
254 | thread_id_t *);
|
---|
255 | extern sysarg_t sys_thread_exit(int);
|
---|
256 | extern sysarg_t sys_thread_get_id(thread_id_t *);
|
---|
257 | extern sysarg_t sys_thread_usleep(uint32_t);
|
---|
258 |
|
---|
259 | #endif
|
---|
260 |
|
---|
261 | /** @}
|
---|
262 | */
|
---|