[f761f1eb] | 1 | /*
|
---|
[ea7890e7] | 2 | * Copyright (c) 2001-2007 Jakub Jermar
|
---|
[f761f1eb] | 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 |
|
---|
[764c302] | 29 | /** @addtogroup genericproc
|
---|
[b45c443] | 30 | * @{
|
---|
| 31 | */
|
---|
| 32 | /** @file
|
---|
| 33 | */
|
---|
| 34 |
|
---|
[06e1e95] | 35 | #ifndef KERN_THREAD_H_
|
---|
| 36 | #define KERN_THREAD_H_
|
---|
[f761f1eb] | 37 |
|
---|
[b3f8fb7] | 38 | #include <synch/waitq.h>
|
---|
| 39 | #include <proc/task.h>
|
---|
[831a04d0] | 40 | #include <time/timeout.h>
|
---|
[b3f8fb7] | 41 | #include <cpu.h>
|
---|
[ea7890e7] | 42 | #include <synch/spinlock.h>
|
---|
[5dcee525] | 43 | #include <adt/avl.h>
|
---|
[f76fed4] | 44 | #include <mm/slab.h>
|
---|
[b3f8fb7] | 45 | #include <arch/cpu.h>
|
---|
| 46 | #include <mm/tlb.h>
|
---|
[c0699467] | 47 | #include <abi/proc/uarg.h>
|
---|
[9a1b20c] | 48 | #include <udebug/udebug.h>
|
---|
[c0699467] | 49 | #include <abi/sysinfo.h>
|
---|
[f761f1eb] | 50 |
|
---|
[da1bafb] | 51 | #define THREAD_NAME_BUFLEN 20
|
---|
[f761f1eb] | 52 |
|
---|
[a000878c] | 53 | extern const char *thread_states[];
|
---|
[f761f1eb] | 54 |
|
---|
[32fffef0] | 55 | /* Thread flags */
|
---|
[6eef3c4] | 56 | typedef enum {
|
---|
| 57 | THREAD_FLAG_NONE = 0,
|
---|
| 58 | /** Thread executes in user space. */
|
---|
| 59 | THREAD_FLAG_USPACE = (1 << 0),
|
---|
| 60 | /** Thread will be attached by the caller. */
|
---|
| 61 | THREAD_FLAG_NOATTACH = (1 << 1),
|
---|
| 62 | /** Thread accounting doesn't affect accumulated task accounting. */
|
---|
| 63 | THREAD_FLAG_UNCOUNTED = (1 << 2)
|
---|
| 64 | } thread_flags_t;
|
---|
[f761f1eb] | 65 |
|
---|
[4c60255] | 66 | /** Thread structure. There is one per thread. */
|
---|
| 67 | typedef struct thread {
|
---|
[da1bafb] | 68 | link_t rq_link; /**< Run queue link. */
|
---|
| 69 | link_t wq_link; /**< Wait queue link. */
|
---|
| 70 | link_t th_link; /**< Links to threads within containing task. */
|
---|
| 71 |
|
---|
[5dcee525] | 72 | /** Threads linkage to the threads_tree. */
|
---|
| 73 | avltree_node_t threads_tree_node;
|
---|
[4c60255] | 74 |
|
---|
| 75 | /** Lock protecting thread structure.
|
---|
| 76 | *
|
---|
| 77 | * Protects the whole thread structure except list links above.
|
---|
| 78 | */
|
---|
[da1bafb] | 79 | IRQ_SPINLOCK_DECLARE(lock);
|
---|
| 80 |
|
---|
[4c60255] | 81 | char name[THREAD_NAME_BUFLEN];
|
---|
[da1bafb] | 82 |
|
---|
[80bcaed] | 83 | /** Function implementing the thread. */
|
---|
[df58e44] | 84 | void (*thread_code)(void *);
|
---|
[80bcaed] | 85 | /** Argument passed to thread_code() function. */
|
---|
| 86 | void *thread_arg;
|
---|
[da1bafb] | 87 |
|
---|
[80bcaed] | 88 | /**
|
---|
[df58e44] | 89 | * From here, the stored context is restored
|
---|
| 90 | * when the thread is scheduled.
|
---|
[80bcaed] | 91 | */
|
---|
[4c60255] | 92 | context_t saved_context;
|
---|
[df58e44] | 93 |
|
---|
[80bcaed] | 94 | /**
|
---|
[df58e44] | 95 | * From here, the stored timeout context
|
---|
| 96 | * is restored when sleep times out.
|
---|
[80bcaed] | 97 | */
|
---|
[4c60255] | 98 | context_t sleep_timeout_context;
|
---|
[df58e44] | 99 |
|
---|
[80bcaed] | 100 | /**
|
---|
[df58e44] | 101 | * From here, the stored interruption context
|
---|
| 102 | * is restored when sleep is interrupted.
|
---|
[80bcaed] | 103 | */
|
---|
[4c60255] | 104 | context_t sleep_interruption_context;
|
---|
[da1bafb] | 105 |
|
---|
[80bcaed] | 106 | /** If true, the thread can be interrupted from sleep. */
|
---|
| 107 | bool sleep_interruptible;
|
---|
| 108 | /** Wait queue in which this thread sleeps. */
|
---|
| 109 | waitq_t *sleep_queue;
|
---|
| 110 | /** Timeout used for timeoutable sleeping. */
|
---|
| 111 | timeout_t sleep_timeout;
|
---|
| 112 | /** Flag signalling sleep timeout in progress. */
|
---|
[da1bafb] | 113 | volatile bool timeout_pending;
|
---|
| 114 |
|
---|
[80bcaed] | 115 | /**
|
---|
| 116 | * True if this thread is executing copy_from_uspace().
|
---|
| 117 | * False otherwise.
|
---|
| 118 | */
|
---|
[4c60255] | 119 | bool in_copy_from_uspace;
|
---|
[df58e44] | 120 |
|
---|
[80bcaed] | 121 | /**
|
---|
| 122 | * True if this thread is executing copy_to_uspace().
|
---|
| 123 | * False otherwise.
|
---|
| 124 | */
|
---|
[4c60255] | 125 | bool in_copy_to_uspace;
|
---|
| 126 |
|
---|
| 127 | /**
|
---|
[80bcaed] | 128 | * If true, the thread will not go to sleep at all and will call
|
---|
| 129 | * thread_exit() before returning to userspace.
|
---|
[4c60255] | 130 | */
|
---|
[da1bafb] | 131 | bool interrupted;
|
---|
[4c60255] | 132 |
|
---|
[80bcaed] | 133 | /** If true, thread_join_timeout() cannot be used on this thread. */
|
---|
| 134 | bool detached;
|
---|
| 135 | /** Waitq for thread_join_timeout(). */
|
---|
| 136 | waitq_t join_wq;
|
---|
[ea7890e7] | 137 | /** Link used in the joiner_head list. */
|
---|
| 138 | link_t joiner_link;
|
---|
[da1bafb] | 139 |
|
---|
[4c60255] | 140 | fpu_context_t *saved_fpu_context;
|
---|
[6eef3c4] | 141 | bool fpu_context_exists;
|
---|
[da1bafb] | 142 |
|
---|
[4c60255] | 143 | /*
|
---|
| 144 | * Defined only if thread doesn't run.
|
---|
[80bcaed] | 145 | * It means that fpu context is in CPU that last time executes this
|
---|
| 146 | * thread. This disables migration.
|
---|
[4c60255] | 147 | */
|
---|
[6eef3c4] | 148 | bool fpu_context_engaged;
|
---|
[da1bafb] | 149 |
|
---|
[43ac0cc] | 150 | /* The thread will not be migrated if nomigrate is non-zero. */
|
---|
[6eef3c4] | 151 | unsigned int nomigrate;
|
---|
[43ac0cc] | 152 |
|
---|
[6eef3c4] | 153 | /** Thread state. */
|
---|
[80bcaed] | 154 | state_t state;
|
---|
[4c60255] | 155 |
|
---|
[6eef3c4] | 156 | /** Thread CPU. */
|
---|
[80bcaed] | 157 | cpu_t *cpu;
|
---|
| 158 | /** Containing task. */
|
---|
| 159 | task_t *task;
|
---|
[6eef3c4] | 160 | /** Thread is wired to CPU. */
|
---|
| 161 | bool wired;
|
---|
| 162 | /** Thread was migrated to another CPU and has not run yet. */
|
---|
| 163 | bool stolen;
|
---|
| 164 | /** Thread is executed in user space. */
|
---|
| 165 | bool uspace;
|
---|
[da1bafb] | 166 |
|
---|
[80bcaed] | 167 | /** Ticks before preemption. */
|
---|
| 168 | uint64_t ticks;
|
---|
[4c60255] | 169 |
|
---|
[80bcaed] | 170 | /** Thread accounting. */
|
---|
[a2a00e8] | 171 | uint64_t ucycles;
|
---|
| 172 | uint64_t kcycles;
|
---|
[80bcaed] | 173 | /** Last sampled cycle. */
|
---|
| 174 | uint64_t last_cycle;
|
---|
[da1bafb] | 175 | /** Thread doesn't affect accumulated accounting. */
|
---|
[80bcaed] | 176 | bool uncounted;
|
---|
[da1bafb] | 177 |
|
---|
[80bcaed] | 178 | /** Thread's priority. Implemented as index to CPU->rq */
|
---|
| 179 | int priority;
|
---|
| 180 | /** Thread ID. */
|
---|
[201abde] | 181 | thread_id_t tid;
|
---|
[4c60255] | 182 |
|
---|
[80bcaed] | 183 | /** Architecture-specific data. */
|
---|
| 184 | thread_arch_t arch;
|
---|
[da1bafb] | 185 |
|
---|
[80bcaed] | 186 | /** Thread's kernel stack. */
|
---|
| 187 | uint8_t *kstack;
|
---|
[da1bafb] | 188 |
|
---|
[9a1b20c] | 189 | #ifdef CONFIG_UDEBUG
|
---|
[5b7a107] | 190 | /**
|
---|
| 191 | * If true, the scheduler will print a stack trace
|
---|
| 192 | * to the kernel console upon scheduling this thread.
|
---|
| 193 | */
|
---|
| 194 | bool btrace;
|
---|
| 195 |
|
---|
[9a1b20c] | 196 | /** Debugging stuff */
|
---|
| 197 | udebug_thread_t udebug;
|
---|
[da1bafb] | 198 | #endif /* CONFIG_UDEBUG */
|
---|
[4c60255] | 199 | } thread_t;
|
---|
| 200 |
|
---|
[05e2a7ad] | 201 | /** Thread list lock.
|
---|
| 202 | *
|
---|
[5dcee525] | 203 | * This lock protects the threads_tree.
|
---|
[05e2a7ad] | 204 | * Must be acquired before T.lock for each T of type thread_t.
|
---|
| 205 | *
|
---|
| 206 | */
|
---|
[da1bafb] | 207 | IRQ_SPINLOCK_EXTERN(threads_lock);
|
---|
[05e2a7ad] | 208 |
|
---|
[5dcee525] | 209 | /** AVL tree containing all threads. */
|
---|
| 210 | extern avltree_t threads_tree;
|
---|
[f761f1eb] | 211 |
|
---|
| 212 | extern void thread_init(void);
|
---|
[da1bafb] | 213 | extern thread_t *thread_create(void (*)(void *), void *, task_t *,
|
---|
[6eef3c4] | 214 | thread_flags_t, const char *);
|
---|
| 215 | extern void thread_wire(thread_t *, cpu_t *);
|
---|
[d52b82ad] | 216 | extern void thread_attach(thread_t *, task_t *);
|
---|
| 217 | extern void thread_ready(thread_t *);
|
---|
[874621f] | 218 | extern void thread_exit(void) __attribute__((noreturn));
|
---|
[518dd43] | 219 | extern void thread_interrupt(thread_t *);
|
---|
| 220 | extern bool thread_interrupted(thread_t *);
|
---|
[f761f1eb] | 221 |
|
---|
[3fa424a9] | 222 | #ifndef thread_create_arch
|
---|
[d52b82ad] | 223 | extern void thread_create_arch(thread_t *);
|
---|
[3fa424a9] | 224 | #endif
|
---|
[da1bafb] | 225 |
|
---|
[32fffef0] | 226 | #ifndef thr_constructor_arch
|
---|
[d52b82ad] | 227 | extern void thr_constructor_arch(thread_t *);
|
---|
[32fffef0] | 228 | #endif
|
---|
[da1bafb] | 229 |
|
---|
[32fffef0] | 230 | #ifndef thr_destructor_arch
|
---|
[d52b82ad] | 231 | extern void thr_destructor_arch(thread_t *);
|
---|
[32fffef0] | 232 | #endif
|
---|
[3fa424a9] | 233 |
|
---|
[d52b82ad] | 234 | extern void thread_sleep(uint32_t);
|
---|
| 235 | extern void thread_usleep(uint32_t);
|
---|
[f761f1eb] | 236 |
|
---|
[80bcaed] | 237 | #define thread_join(t) \
|
---|
| 238 | thread_join_timeout((t), SYNCH_NO_TIMEOUT, SYNCH_FLAGS_NONE)
|
---|
[da1bafb] | 239 |
|
---|
| 240 | extern int thread_join_timeout(thread_t *, uint32_t, unsigned int);
|
---|
[d52b82ad] | 241 | extern void thread_detach(thread_t *);
|
---|
[fe19611] | 242 |
|
---|
[48dcc69] | 243 | extern void thread_print_list(bool);
|
---|
[da1bafb] | 244 | extern void thread_destroy(thread_t *, bool);
|
---|
[e1b6742] | 245 | extern thread_t *thread_find_by_id(thread_id_t);
|
---|
[a2a00e8] | 246 | extern void thread_update_accounting(bool);
|
---|
[d52b82ad] | 247 | extern bool thread_exists(thread_t *);
|
---|
[f761f1eb] | 248 |
|
---|
[43ac0cc] | 249 | extern void thread_migration_disable(void);
|
---|
| 250 | extern void thread_migration_enable(void);
|
---|
| 251 |
|
---|
[5b7a107] | 252 | #ifdef CONFIG_UDEBUG
|
---|
[df58e44] | 253 | extern void thread_stack_trace(thread_id_t);
|
---|
[5b7a107] | 254 | #endif
|
---|
[f761f1eb] | 255 |
|
---|
[80bcaed] | 256 | /** Fpu context slab cache. */
|
---|
[f76fed4] | 257 | extern slab_cache_t *fpu_context_slab;
|
---|
| 258 |
|
---|
[80bcaed] | 259 | /* Thread syscall prototypes. */
|
---|
[96b02eb9] | 260 | extern sysarg_t sys_thread_create(uspace_arg_t *, char *, size_t,
|
---|
[d52b82ad] | 261 | thread_id_t *);
|
---|
[96b02eb9] | 262 | extern sysarg_t sys_thread_exit(int);
|
---|
| 263 | extern sysarg_t sys_thread_get_id(thread_id_t *);
|
---|
| 264 | extern sysarg_t sys_thread_usleep(uint32_t);
|
---|
[7e7b791] | 265 | extern sysarg_t sys_thread_udelay(uint32_t);
|
---|
[9f52563] | 266 |
|
---|
[f761f1eb] | 267 | #endif
|
---|
[b45c443] | 268 |
|
---|
[764c302] | 269 | /** @}
|
---|
[b45c443] | 270 | */
|
---|