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