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

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since 1ba37fa was 1ba37fa, checked in by Stanislav Kozina <stanislav.kozina@…>, 15 years ago

Removed useless cycles sum, using ucycles + kcycles instead.

  • Property mode set to 100644
File size: 7.0 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>
[f761f1eb]50
[361635c]51#define THREAD_STACK_SIZE STACK_SIZE
[4c60255]52#define THREAD_NAME_BUFLEN 20
[f761f1eb]53
[a000878c]54extern 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).
62 */
[80bcaed]63#define THREAD_FLAG_WIRED (1 << 0)
64/** Thread was migrated to another CPU and has not run yet. */
65#define THREAD_FLAG_STOLEN (1 << 1)
66/** Thread executes in userspace. */
67#define THREAD_FLAG_USPACE (1 << 2)
[d8431986]68/** Thread will be attached by the caller. */
69#define THREAD_FLAG_NOATTACH (1 << 3)
[f761f1eb]70
[18b5402c]71/* We need state_t enum definition */
72#include <ps/taskinfo.h>
[831a04d0]73
[4c60255]74/** Thread structure. There is one per thread. */
75typedef struct thread {
[80bcaed]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. */
[5dcee525]79
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 */
87 SPINLOCK_DECLARE(lock);
88
89 char name[THREAD_NAME_BUFLEN];
90
[80bcaed]91 /** Function implementing the thread. */
92 void (* thread_code)(void *);
93 /** Argument passed to thread_code() function. */
94 void *thread_arg;
[4c60255]95
[80bcaed]96 /**
97 * From here, the stored context is restored when the thread is
98 * scheduled.
99 */
[4c60255]100 context_t saved_context;
[80bcaed]101 /**
102 * From here, the stored timeout context is restored when sleep times
103 * out.
104 */
[4c60255]105 context_t sleep_timeout_context;
[80bcaed]106 /**
107 * From here, the stored interruption context is restored when sleep is
108 * interrupted.
109 */
[4c60255]110 context_t sleep_interruption_context;
111
[80bcaed]112 /** If true, the thread can be interrupted from sleep. */
113 bool sleep_interruptible;
114 /** Wait queue in which this thread sleeps. */
115 waitq_t *sleep_queue;
116 /** Timeout used for timeoutable sleeping. */
117 timeout_t sleep_timeout;
118 /** Flag signalling sleep timeout in progress. */
119 volatile int timeout_pending;
[4c60255]120
[80bcaed]121 /**
122 * True if this thread is executing copy_from_uspace().
123 * False otherwise.
124 */
[4c60255]125 bool in_copy_from_uspace;
[80bcaed]126 /**
127 * True if this thread is executing copy_to_uspace().
128 * False otherwise.
129 */
[4c60255]130 bool in_copy_to_uspace;
131
132 /**
[80bcaed]133 * If true, the thread will not go to sleep at all and will call
134 * thread_exit() before returning to userspace.
[4c60255]135 */
136 bool interrupted;
137
[80bcaed]138 /** If true, thread_join_timeout() cannot be used on this thread. */
139 bool detached;
140 /** Waitq for thread_join_timeout(). */
141 waitq_t join_wq;
[ea7890e7]142 /** Link used in the joiner_head list. */
143 link_t joiner_link;
[4c60255]144
145 fpu_context_t *saved_fpu_context;
146 int fpu_context_exists;
147
148 /*
149 * Defined only if thread doesn't run.
[80bcaed]150 * It means that fpu context is in CPU that last time executes this
151 * thread. This disables migration.
[4c60255]152 */
153 int fpu_context_engaged;
154
155 rwlock_type_t rwlock_holder_type;
156
[80bcaed]157 /** Callback fired in scheduler before the thread is put asleep. */
158 void (* call_me)(void *);
159 /** Argument passed to call_me(). */
160 void *call_me_with;
[4c60255]161
[80bcaed]162 /** Thread's state. */
163 state_t state;
164 /** Thread's flags. */
165 int flags;
[4c60255]166
[80bcaed]167 /** Thread's CPU. */
168 cpu_t *cpu;
169 /** Containing task. */
170 task_t *task;
[4c60255]171
[80bcaed]172 /** Ticks before preemption. */
173 uint64_t ticks;
[4c60255]174
[80bcaed]175 /** Thread accounting. */
[a2a00e8]176 uint64_t ucycles;
177 uint64_t kcycles;
[80bcaed]178 /** Last sampled cycle. */
179 uint64_t last_cycle;
180 /** Thread doesn't affect accumulated accounting. */
181 bool uncounted;
182
183 /** Thread's priority. Implemented as index to CPU->rq */
184 int priority;
185 /** Thread ID. */
[201abde]186 thread_id_t tid;
[4c60255]187
[80bcaed]188 /** Architecture-specific data. */
189 thread_arch_t arch;
[4c60255]190
[80bcaed]191 /** Thread's kernel stack. */
192 uint8_t *kstack;
[9a1b20c]193
194#ifdef CONFIG_UDEBUG
195 /** Debugging stuff */
196 udebug_thread_t udebug;
197#endif
198
[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 */
[8be8cfa]207SPINLOCK_EXTERN(threads_lock);
[05e2a7ad]208
[5dcee525]209/** AVL tree containing all threads. */
210extern avltree_t threads_tree;
[f761f1eb]211
212extern void thread_init(void);
[a000878c]213extern thread_t *thread_create(void (*)(void *), void *, task_t *, int,
214 const char *, bool);
[d52b82ad]215extern void thread_attach(thread_t *, task_t *);
216extern void thread_ready(thread_t *);
[874621f]217extern void thread_exit(void) __attribute__((noreturn));
[f761f1eb]218
[3fa424a9]219#ifndef thread_create_arch
[d52b82ad]220extern void thread_create_arch(thread_t *);
[3fa424a9]221#endif
[32fffef0]222#ifndef thr_constructor_arch
[d52b82ad]223extern void thr_constructor_arch(thread_t *);
[32fffef0]224#endif
225#ifndef thr_destructor_arch
[d52b82ad]226extern void thr_destructor_arch(thread_t *);
[32fffef0]227#endif
[3fa424a9]228
[d52b82ad]229extern void thread_sleep(uint32_t);
230extern void thread_usleep(uint32_t);
[f761f1eb]231
[80bcaed]232#define thread_join(t) \
233 thread_join_timeout((t), SYNCH_NO_TIMEOUT, SYNCH_FLAGS_NONE)
[d52b82ad]234extern int thread_join_timeout(thread_t *, uint32_t, int);
235extern void thread_detach(thread_t *);
[fe19611]236
[d52b82ad]237extern void thread_register_call_me(void (*)(void *), void *);
[55ab0f1]238extern void thread_print_list(void);
[d52b82ad]239extern void thread_destroy(thread_t *);
[a2a00e8]240extern void thread_update_accounting(bool);
[d52b82ad]241extern bool thread_exists(thread_t *);
[f761f1eb]242
[80bcaed]243/** Fpu context slab cache. */
[f76fed4]244extern slab_cache_t *fpu_context_slab;
245
[80bcaed]246/* Thread syscall prototypes. */
[d52b82ad]247extern unative_t sys_thread_create(uspace_arg_t *, char *, size_t,
248 thread_id_t *);
249extern unative_t sys_thread_exit(int);
250extern unative_t sys_thread_get_id(thread_id_t *);
[d9ece1cb]251extern unative_t sys_thread_usleep(uint32_t);
[9f52563]252
[f761f1eb]253#endif
[b45c443]254
[764c302]255/** @}
[b45c443]256 */
Note: See TracBrowser for help on using the repository browser.