source: mainline/kernel/generic/include/proc/thread.h@ da1bafb

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since da1bafb was da1bafb, checked in by Martin Decky <martin@…>, 15 years ago

major code revision

  • replace spinlocks taken with interrupts disabled with irq_spinlocks
  • change spacing (not indendation) to be tab-size independent
  • use unsigned integer types where appropriate (especially bit flags)
  • visual separation
  • remove argument names in function prototypes
  • string changes
  • correct some formating directives
  • replace various cryptic single-character variables (t, a, m, c, b, etc.) with proper identifiers (thread, task, timeout, as, itm, itc, etc.)
  • unify some assembler constructs
  • unused page table levels are now optimized out in compile time
  • replace several ints (with boolean semantics) with bools
  • use specifically sized types instead of generic types where appropriate (size_t, uint32_t, btree_key_t)
  • improve comments
  • split asserts with conjuction into multiple independent asserts
  • Property mode set to 100644
File size: 7.1 KB
RevLine 
[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>
[f761f1eb]42#include <synch/rwlock.h>
[ea7890e7]43#include <synch/spinlock.h>
[5dcee525]44#include <adt/avl.h>
[f76fed4]45#include <mm/slab.h>
[b3f8fb7]46#include <arch/cpu.h>
47#include <mm/tlb.h>
[0f250f9]48#include <proc/uarg.h>
[9a1b20c]49#include <udebug/udebug.h>
[e1b6742]50#include <sysinfo/abi.h>
[f761f1eb]51
[da1bafb]52#define THREAD_STACK_SIZE STACK_SIZE
53#define THREAD_NAME_BUFLEN 20
[f761f1eb]54
[a000878c]55extern const char *thread_states[];
[f761f1eb]56
[32fffef0]57/* Thread flags */
[80bcaed]58
[4365d10]59/** Thread cannot be migrated to another CPU.
60 *
61 * When using this flag, the caller must set cpu in the thread_t
62 * structure manually before calling thread_ready (even on uniprocessor).
[da1bafb]63 *
64 */
65#define THREAD_FLAG_WIRED (1 << 0)
66
[80bcaed]67/** Thread was migrated to another CPU and has not run yet. */
[da1bafb]68#define THREAD_FLAG_STOLEN (1 << 1)
69
[80bcaed]70/** Thread executes in userspace. */
[da1bafb]71#define THREAD_FLAG_USPACE (1 << 2)
72
[d8431986]73/** Thread will be attached by the caller. */
[da1bafb]74#define THREAD_FLAG_NOATTACH (1 << 3)
[f761f1eb]75
[4c60255]76/** Thread structure. There is one per thread. */
77typedef struct thread {
[da1bafb]78 link_t rq_link; /**< Run queue link. */
79 link_t wq_link; /**< Wait queue link. */
80 link_t th_link; /**< Links to threads within containing task. */
81
[5dcee525]82 /** Threads linkage to the threads_tree. */
83 avltree_node_t threads_tree_node;
[4c60255]84
85 /** Lock protecting thread structure.
86 *
87 * Protects the whole thread structure except list links above.
88 */
[da1bafb]89 IRQ_SPINLOCK_DECLARE(lock);
90
[4c60255]91 char name[THREAD_NAME_BUFLEN];
[da1bafb]92
[80bcaed]93 /** Function implementing the thread. */
94 void (* thread_code)(void *);
95 /** Argument passed to thread_code() function. */
96 void *thread_arg;
[da1bafb]97
[80bcaed]98 /**
99 * From here, the stored context is restored when the thread is
100 * scheduled.
101 */
[4c60255]102 context_t saved_context;
[80bcaed]103 /**
104 * From here, the stored timeout context is restored when sleep times
105 * out.
106 */
[4c60255]107 context_t sleep_timeout_context;
[80bcaed]108 /**
109 * From here, the stored interruption context is restored when sleep is
110 * interrupted.
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;
[80bcaed]128 /**
129 * True if this thread is executing copy_to_uspace().
130 * False otherwise.
131 */
[4c60255]132 bool in_copy_to_uspace;
133
134 /**
[80bcaed]135 * If true, the thread will not go to sleep at all and will call
136 * thread_exit() before returning to userspace.
[4c60255]137 */
[da1bafb]138 bool interrupted;
[4c60255]139
[80bcaed]140 /** If true, thread_join_timeout() cannot be used on this thread. */
141 bool detached;
142 /** Waitq for thread_join_timeout(). */
143 waitq_t join_wq;
[ea7890e7]144 /** Link used in the joiner_head list. */
145 link_t joiner_link;
[da1bafb]146
[4c60255]147 fpu_context_t *saved_fpu_context;
148 int fpu_context_exists;
[da1bafb]149
[4c60255]150 /*
151 * Defined only if thread doesn't run.
[80bcaed]152 * It means that fpu context is in CPU that last time executes this
153 * thread. This disables migration.
[4c60255]154 */
155 int fpu_context_engaged;
[da1bafb]156
[4c60255]157 rwlock_type_t rwlock_holder_type;
[da1bafb]158
[80bcaed]159 /** Callback fired in scheduler before the thread is put asleep. */
160 void (* call_me)(void *);
161 /** Argument passed to call_me(). */
162 void *call_me_with;
[da1bafb]163
[80bcaed]164 /** Thread's state. */
165 state_t state;
166 /** Thread's flags. */
[da1bafb]167 unsigned int flags;
[4c60255]168
[80bcaed]169 /** Thread's CPU. */
170 cpu_t *cpu;
171 /** Containing task. */
172 task_t *task;
[da1bafb]173
[80bcaed]174 /** Ticks before preemption. */
175 uint64_t ticks;
[4c60255]176
[80bcaed]177 /** Thread accounting. */
[a2a00e8]178 uint64_t ucycles;
179 uint64_t kcycles;
[80bcaed]180 /** Last sampled cycle. */
181 uint64_t last_cycle;
[da1bafb]182 /** Thread doesn't affect accumulated accounting. */
[80bcaed]183 bool uncounted;
[da1bafb]184
[80bcaed]185 /** Thread's priority. Implemented as index to CPU->rq */
186 int priority;
187 /** Thread ID. */
[201abde]188 thread_id_t tid;
[4c60255]189
[80bcaed]190 /** Architecture-specific data. */
191 thread_arch_t arch;
[da1bafb]192
[80bcaed]193 /** Thread's kernel stack. */
194 uint8_t *kstack;
[da1bafb]195
[9a1b20c]196#ifdef CONFIG_UDEBUG
197 /** Debugging stuff */
198 udebug_thread_t udebug;
[da1bafb]199#endif /* CONFIG_UDEBUG */
[4c60255]200} thread_t;
201
[05e2a7ad]202/** Thread list lock.
203 *
[5dcee525]204 * This lock protects the threads_tree.
[05e2a7ad]205 * Must be acquired before T.lock for each T of type thread_t.
206 *
207 */
[da1bafb]208IRQ_SPINLOCK_EXTERN(threads_lock);
[05e2a7ad]209
[5dcee525]210/** AVL tree containing all threads. */
211extern avltree_t threads_tree;
[f761f1eb]212
213extern void thread_init(void);
[da1bafb]214extern thread_t *thread_create(void (*)(void *), void *, task_t *,
215 unsigned int, const char *, bool);
[d52b82ad]216extern void thread_attach(thread_t *, task_t *);
217extern void thread_ready(thread_t *);
[874621f]218extern void thread_exit(void) __attribute__((noreturn));
[f761f1eb]219
[3fa424a9]220#ifndef thread_create_arch
[d52b82ad]221extern void thread_create_arch(thread_t *);
[3fa424a9]222#endif
[da1bafb]223
[32fffef0]224#ifndef thr_constructor_arch
[d52b82ad]225extern void thr_constructor_arch(thread_t *);
[32fffef0]226#endif
[da1bafb]227
[32fffef0]228#ifndef thr_destructor_arch
[d52b82ad]229extern void thr_destructor_arch(thread_t *);
[32fffef0]230#endif
[3fa424a9]231
[d52b82ad]232extern void thread_sleep(uint32_t);
233extern void thread_usleep(uint32_t);
[f761f1eb]234
[80bcaed]235#define thread_join(t) \
236 thread_join_timeout((t), SYNCH_NO_TIMEOUT, SYNCH_FLAGS_NONE)
[da1bafb]237
238extern int thread_join_timeout(thread_t *, uint32_t, unsigned int);
[d52b82ad]239extern void thread_detach(thread_t *);
[fe19611]240
[d52b82ad]241extern void thread_register_call_me(void (*)(void *), void *);
[55ab0f1]242extern void thread_print_list(void);
[da1bafb]243extern void thread_destroy(thread_t *, bool);
[e1b6742]244extern thread_t *thread_find_by_id(thread_id_t);
[a2a00e8]245extern void thread_update_accounting(bool);
[d52b82ad]246extern bool thread_exists(thread_t *);
[f761f1eb]247
[80bcaed]248/** Fpu context slab cache. */
[f76fed4]249extern slab_cache_t *fpu_context_slab;
250
[80bcaed]251/* Thread syscall prototypes. */
[d52b82ad]252extern unative_t sys_thread_create(uspace_arg_t *, char *, size_t,
253 thread_id_t *);
254extern unative_t sys_thread_exit(int);
255extern unative_t sys_thread_get_id(thread_id_t *);
[d9ece1cb]256extern unative_t sys_thread_usleep(uint32_t);
[9f52563]257
[f761f1eb]258#endif
[b45c443]259
[764c302]260/** @}
[b45c443]261 */
Note: See TracBrowser for help on using the repository browser.