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