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

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since d1e9321 was 48d14222, checked in by Jakub Jermar <jakub@…>, 18 years ago

JoinMe → Lingering

  • Property mode set to 100644
File size: 7.4 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>
[016acbe]44#include <adt/btree.h>
[f76fed4]45#include <mm/slab.h>
[b3f8fb7]46#include <arch/cpu.h>
47#include <mm/tlb.h>
[0f250f9]48#include <proc/uarg.h>
[f761f1eb]49
[361635c]50#define THREAD_STACK_SIZE STACK_SIZE
[4c60255]51#define THREAD_NAME_BUFLEN 20
[f761f1eb]52
53extern char *thread_states[];
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).
61 */
[80bcaed]62#define THREAD_FLAG_WIRED (1 << 0)
63/** Thread was migrated to another CPU and has not run yet. */
64#define THREAD_FLAG_STOLEN (1 << 1)
65/** Thread executes in userspace. */
66#define THREAD_FLAG_USPACE (1 << 2)
[d8431986]67/** Thread will be attached by the caller. */
68#define THREAD_FLAG_NOATTACH (1 << 3)
[f761f1eb]69
[831a04d0]70/** Thread states. */
71typedef enum {
[80bcaed]72 /** It is an error, if thread is found in this state. */
73 Invalid,
74 /** State of a thread that is currently executing on some CPU. */
75 Running,
76 /** Thread in this state is waiting for an event. */
77 Sleeping,
78 /** State of threads in a run queue. */
79 Ready,
80 /** Threads are in this state before they are first readied. */
81 Entering,
82 /** After a thread calls thread_exit(), it is put into Exiting state. */
83 Exiting,
[48d14222]84 /** Threads that were not detached but exited are Lingering. */
85 Lingering
[831a04d0]86} state_t;
87
[4c60255]88/** Thread structure. There is one per thread. */
89typedef struct thread {
[80bcaed]90 link_t rq_link; /**< Run queue link. */
91 link_t wq_link; /**< Wait queue link. */
92 link_t th_link; /**< Links to threads within containing task. */
[4c60255]93
94 /** Lock protecting thread structure.
95 *
96 * Protects the whole thread structure except list links above.
97 */
98 SPINLOCK_DECLARE(lock);
99
100 char name[THREAD_NAME_BUFLEN];
101
[80bcaed]102 /** Function implementing the thread. */
103 void (* thread_code)(void *);
104 /** Argument passed to thread_code() function. */
105 void *thread_arg;
[4c60255]106
[80bcaed]107 /**
108 * From here, the stored context is restored when the thread is
109 * scheduled.
110 */
[4c60255]111 context_t saved_context;
[80bcaed]112 /**
113 * From here, the stored timeout context is restored when sleep times
114 * out.
115 */
[4c60255]116 context_t sleep_timeout_context;
[80bcaed]117 /**
118 * From here, the stored interruption context is restored when sleep is
119 * interrupted.
120 */
[4c60255]121 context_t sleep_interruption_context;
122
[80bcaed]123 /** If true, the thread can be interrupted from sleep. */
124 bool sleep_interruptible;
125 /** Wait queue in which this thread sleeps. */
126 waitq_t *sleep_queue;
127 /** Timeout used for timeoutable sleeping. */
128 timeout_t sleep_timeout;
129 /** Flag signalling sleep timeout in progress. */
130 volatile int timeout_pending;
[4c60255]131
[80bcaed]132 /**
133 * True if this thread is executing copy_from_uspace().
134 * False otherwise.
135 */
[4c60255]136 bool in_copy_from_uspace;
[80bcaed]137 /**
138 * True if this thread is executing copy_to_uspace().
139 * False otherwise.
140 */
[4c60255]141 bool in_copy_to_uspace;
142
143 /**
[80bcaed]144 * If true, the thread will not go to sleep at all and will call
145 * thread_exit() before returning to userspace.
[4c60255]146 */
147 bool interrupted;
148
[80bcaed]149 /** If true, thread_join_timeout() cannot be used on this thread. */
150 bool detached;
151 /** Waitq for thread_join_timeout(). */
152 waitq_t join_wq;
[ea7890e7]153 /** Link used in the joiner_head list. */
154 link_t joiner_link;
[4c60255]155
156 fpu_context_t *saved_fpu_context;
157 int fpu_context_exists;
158
159 /*
160 * Defined only if thread doesn't run.
[80bcaed]161 * It means that fpu context is in CPU that last time executes this
162 * thread. This disables migration.
[4c60255]163 */
164 int fpu_context_engaged;
165
166 rwlock_type_t rwlock_holder_type;
167
[80bcaed]168 /** Callback fired in scheduler before the thread is put asleep. */
169 void (* call_me)(void *);
170 /** Argument passed to call_me(). */
171 void *call_me_with;
[4c60255]172
[80bcaed]173 /** Thread's state. */
174 state_t state;
175 /** Thread's flags. */
176 int flags;
[4c60255]177
[80bcaed]178 /** Thread's CPU. */
179 cpu_t *cpu;
180 /** Containing task. */
181 task_t *task;
[4c60255]182
[80bcaed]183 /** Ticks before preemption. */
184 uint64_t ticks;
[4c60255]185
[80bcaed]186 /** Thread accounting. */
187 uint64_t cycles;
188 /** Last sampled cycle. */
189 uint64_t last_cycle;
190 /** Thread doesn't affect accumulated accounting. */
191 bool uncounted;
192
193 /** Thread's priority. Implemented as index to CPU->rq */
194 int priority;
195 /** Thread ID. */
[201abde]196 thread_id_t tid;
[4c60255]197
[80bcaed]198 /** Architecture-specific data. */
199 thread_arch_t arch;
[4c60255]200
[80bcaed]201 /** Thread's kernel stack. */
202 uint8_t *kstack;
[4c60255]203} thread_t;
204
[05e2a7ad]205/** Thread list lock.
206 *
207 * This lock protects all link_t structures chained in threads_head.
208 * Must be acquired before T.lock for each T of type thread_t.
209 *
210 */
[8be8cfa]211SPINLOCK_EXTERN(threads_lock);
[05e2a7ad]212
[80bcaed]213/** B+tree containing all threads. */
214extern btree_t threads_btree;
[f761f1eb]215
216extern void thread_init(void);
[80bcaed]217extern thread_t *thread_create(void (* func)(void *), void *arg, task_t *task,
218 int flags, char *name, bool uncounted);
[d8431986]219extern void thread_attach(thread_t *t, task_t *task);
[f761f1eb]220extern void thread_ready(thread_t *t);
[874621f]221extern void thread_exit(void) __attribute__((noreturn));
[f761f1eb]222
[3fa424a9]223#ifndef thread_create_arch
224extern void thread_create_arch(thread_t *t);
225#endif
[32fffef0]226#ifndef thr_constructor_arch
227extern void thr_constructor_arch(thread_t *t);
228#endif
229#ifndef thr_destructor_arch
230extern void thr_destructor_arch(thread_t *t);
231#endif
[3fa424a9]232
[7f1c620]233extern void thread_sleep(uint32_t sec);
234extern void thread_usleep(uint32_t usec);
[f761f1eb]235
[80bcaed]236#define thread_join(t) \
237 thread_join_timeout((t), SYNCH_NO_TIMEOUT, SYNCH_FLAGS_NONE)
[7f1c620]238extern int thread_join_timeout(thread_t *t, uint32_t usec, int flags);
[fe19611]239extern void thread_detach(thread_t *t);
240
[80bcaed]241extern void thread_register_call_me(void (* call_me)(void *),
242 void *call_me_with);
[55ab0f1]243extern void thread_print_list(void);
[266294a9]244extern void thread_destroy(thread_t *t);
[cce6acf]245extern void thread_update_accounting(void);
[016acbe]246extern bool thread_exists(thread_t *t);
[f761f1eb]247
[80bcaed]248/** Fpu context slab cache. */
[f76fed4]249extern slab_cache_t *fpu_context_slab;
250
[80bcaed]251/* Thread syscall prototypes. */
[201abde]252extern unative_t sys_thread_create(uspace_arg_t *uspace_uarg, char *uspace_name, thread_id_t *uspace_thread_id);
253extern unative_t sys_thread_exit(int uspace_status);
254extern unative_t sys_thread_get_id(thread_id_t *uspace_thread_id);
[9f52563]255
[f761f1eb]256#endif
[b45c443]257
[764c302]258/** @}
[b45c443]259 */
Note: See TracBrowser for help on using the repository browser.