Subversion Repositories HelenOS

Rev

Rev 2440 | Rev 2451 | Go to most recent revision | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 2440 Rev 2446
1
/*
1
/*
2
 * Copyright (c) 2001-2004 Jakub Jermar
2
 * Copyright (c) 2001-2004 Jakub Jermar
3
 * All rights reserved.
3
 * All rights reserved.
4
 *
4
 *
5
 * Redistribution and use in source and binary forms, with or without
5
 * Redistribution and use in source and binary forms, with or without
6
 * modification, are permitted provided that the following conditions
6
 * modification, are permitted provided that the following conditions
7
 * are met:
7
 * are met:
8
 *
8
 *
9
 * - Redistributions of source code must retain the above copyright
9
 * - Redistributions of source code must retain the above copyright
10
 *   notice, this list of conditions and the following disclaimer.
10
 *   notice, this list of conditions and the following disclaimer.
11
 * - Redistributions in binary form must reproduce the above copyright
11
 * - Redistributions in binary form must reproduce the above copyright
12
 *   notice, this list of conditions and the following disclaimer in the
12
 *   notice, this list of conditions and the following disclaimer in the
13
 *   documentation and/or other materials provided with the distribution.
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
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.
15
 *   derived from this software without specific prior written permission.
16
 *
16
 *
17
 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
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
18
 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19
 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
19
 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20
 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
20
 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21
 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
21
 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22
 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
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
23
 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
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
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.
26
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
 */
27
 */
28
 
28
 
29
/** @addtogroup genericproc
29
/** @addtogroup genericproc
30
 * @{
30
 * @{
31
 */
31
 */
32
 
32
 
33
/**
33
/**
34
 * @file
34
 * @file
35
 * @brief   Thread management functions.
35
 * @brief   Thread management functions.
36
 */
36
 */
37
 
37
 
38
#include <proc/scheduler.h>
38
#include <proc/scheduler.h>
39
#include <proc/thread.h>
39
#include <proc/thread.h>
40
#include <proc/task.h>
40
#include <proc/task.h>
41
#include <proc/uarg.h>
41
#include <proc/uarg.h>
42
#include <mm/frame.h>
42
#include <mm/frame.h>
43
#include <mm/page.h>
43
#include <mm/page.h>
44
#include <arch/asm.h>
44
#include <arch/asm.h>
45
#include <arch/cycle.h>
45
#include <arch/cycle.h>
46
#include <arch.h>
46
#include <arch.h>
47
#include <synch/synch.h>
47
#include <synch/synch.h>
48
#include <synch/spinlock.h>
48
#include <synch/spinlock.h>
49
#include <synch/waitq.h>
49
#include <synch/waitq.h>
50
#include <synch/rwlock.h>
50
#include <synch/rwlock.h>
51
#include <cpu.h>
51
#include <cpu.h>
52
#include <func.h>
52
#include <func.h>
53
#include <context.h>
53
#include <context.h>
54
#include <adt/btree.h>
54
#include <adt/btree.h>
55
#include <adt/list.h>
55
#include <adt/list.h>
56
#include <time/clock.h>
56
#include <time/clock.h>
57
#include <time/timeout.h>
57
#include <time/timeout.h>
58
#include <config.h>
58
#include <config.h>
59
#include <arch/interrupt.h>
59
#include <arch/interrupt.h>
60
#include <smp/ipi.h>
60
#include <smp/ipi.h>
61
#include <arch/faddr.h>
61
#include <arch/faddr.h>
62
#include <atomic.h>
62
#include <atomic.h>
63
#include <memstr.h>
63
#include <memstr.h>
64
#include <print.h>
64
#include <print.h>
65
#include <mm/slab.h>
65
#include <mm/slab.h>
66
#include <debug.h>
66
#include <debug.h>
67
#include <main/uinit.h>
67
#include <main/uinit.h>
68
#include <syscall/copy.h>
68
#include <syscall/copy.h>
69
#include <errno.h>
69
#include <errno.h>
-
 
70
#include <console/klog.h>
70
 
71
 
71
 
72
 
72
/** Thread states */
73
/** Thread states */
73
char *thread_states[] = {
74
char *thread_states[] = {
74
    "Invalid",
75
    "Invalid",
75
    "Running",
76
    "Running",
76
    "Sleeping",
77
    "Sleeping",
77
    "Ready",
78
    "Ready",
78
    "Entering",
79
    "Entering",
79
    "Exiting",
80
    "Exiting",
80
    "Undead"
81
    "JoinMe"
81
};
82
};
82
 
83
 
83
/** Lock protecting the threads_btree B+tree.
84
/** Lock protecting the threads_btree B+tree.
84
 *
85
 *
85
 * For locking rules, see declaration thereof.
86
 * For locking rules, see declaration thereof.
86
 */
87
 */
87
SPINLOCK_INITIALIZE(threads_lock);
88
SPINLOCK_INITIALIZE(threads_lock);
88
 
89
 
89
/** B+tree of all threads.
90
/** B+tree of all threads.
90
 *
91
 *
91
 * When a thread is found in the threads_btree B+tree, it is guaranteed to
92
 * When a thread is found in the threads_btree B+tree, it is guaranteed to
92
 * exist as long as the threads_lock is held.
93
 * exist as long as the threads_lock is held.
93
 */
94
 */
94
btree_t threads_btree;     
95
btree_t threads_btree;     
95
 
96
 
96
SPINLOCK_INITIALIZE(tidlock);
97
SPINLOCK_INITIALIZE(tidlock);
97
thread_id_t last_tid = 0;
98
thread_id_t last_tid = 0;
98
 
99
 
99
static slab_cache_t *thread_slab;
100
static slab_cache_t *thread_slab;
100
#ifdef ARCH_HAS_FPU
101
#ifdef ARCH_HAS_FPU
101
slab_cache_t *fpu_context_slab;
102
slab_cache_t *fpu_context_slab;
102
#endif
103
#endif
103
 
104
 
104
/** Thread wrapper.
105
/** Thread wrapper.
105
 *
106
 *
106
 * This wrapper is provided to ensure that every thread makes a call to
107
 * This wrapper is provided to ensure that every thread makes a call to
107
 * thread_exit() when its implementing function returns.
108
 * thread_exit() when its implementing function returns.
108
 *
109
 *
109
 * interrupts_disable() is assumed.
110
 * interrupts_disable() is assumed.
110
 *
111
 *
111
 */
112
 */
112
static void cushion(void)
113
static void cushion(void)
113
{
114
{
114
    void (*f)(void *) = THREAD->thread_code;
115
    void (*f)(void *) = THREAD->thread_code;
115
    void *arg = THREAD->thread_arg;
116
    void *arg = THREAD->thread_arg;
116
    THREAD->last_cycle = get_cycle();
117
    THREAD->last_cycle = get_cycle();
117
 
118
 
118
    /* This is where each thread wakes up after its creation */
119
    /* This is where each thread wakes up after its creation */
119
    spinlock_unlock(&THREAD->lock);
120
    spinlock_unlock(&THREAD->lock);
120
    interrupts_enable();
121
    interrupts_enable();
121
 
122
 
122
    f(arg);
123
    f(arg);
123
   
124
   
124
    /* Accumulate accounting to the task */
125
    /* Accumulate accounting to the task */
125
    ipl_t ipl = interrupts_disable();
126
    ipl_t ipl = interrupts_disable();
126
   
127
   
127
    spinlock_lock(&THREAD->lock);
128
    spinlock_lock(&THREAD->lock);
128
    if (!THREAD->uncounted) {
129
    if (!THREAD->uncounted) {
129
        thread_update_accounting();
130
        thread_update_accounting();
130
        uint64_t cycles = THREAD->cycles;
131
        uint64_t cycles = THREAD->cycles;
131
        THREAD->cycles = 0;
132
        THREAD->cycles = 0;
132
        spinlock_unlock(&THREAD->lock);
133
        spinlock_unlock(&THREAD->lock);
133
       
134
       
134
        spinlock_lock(&TASK->lock);
135
        spinlock_lock(&TASK->lock);
135
        TASK->cycles += cycles;
136
        TASK->cycles += cycles;
136
        spinlock_unlock(&TASK->lock);
137
        spinlock_unlock(&TASK->lock);
137
    } else
138
    } else
138
        spinlock_unlock(&THREAD->lock);
139
        spinlock_unlock(&THREAD->lock);
139
   
140
   
140
    interrupts_restore(ipl);
141
    interrupts_restore(ipl);
141
   
142
   
142
    thread_exit();
143
    thread_exit();
143
    /* not reached */
144
    /* not reached */
144
}
145
}
145
 
146
 
146
/** Initialization and allocation for thread_t structure */
147
/** Initialization and allocation for thread_t structure */
147
static int thr_constructor(void *obj, int kmflags)
148
static int thr_constructor(void *obj, int kmflags)
148
{
149
{
149
    thread_t *t = (thread_t *) obj;
150
    thread_t *t = (thread_t *) obj;
150
 
151
 
151
    spinlock_initialize(&t->lock, "thread_t_lock");
152
    spinlock_initialize(&t->lock, "thread_t_lock");
152
    link_initialize(&t->rq_link);
153
    link_initialize(&t->rq_link);
153
    link_initialize(&t->wq_link);
154
    link_initialize(&t->wq_link);
154
    link_initialize(&t->th_link);
155
    link_initialize(&t->th_link);
155
 
156
 
156
    /* call the architecture-specific part of the constructor */
157
    /* call the architecture-specific part of the constructor */
157
    thr_constructor_arch(t);
158
    thr_constructor_arch(t);
158
   
159
   
159
#ifdef ARCH_HAS_FPU
160
#ifdef ARCH_HAS_FPU
160
#ifdef CONFIG_FPU_LAZY
161
#ifdef CONFIG_FPU_LAZY
161
    t->saved_fpu_context = NULL;
162
    t->saved_fpu_context = NULL;
162
#else
163
#else
163
    t->saved_fpu_context = slab_alloc(fpu_context_slab, kmflags);
164
    t->saved_fpu_context = slab_alloc(fpu_context_slab, kmflags);
164
    if (!t->saved_fpu_context)
165
    if (!t->saved_fpu_context)
165
        return -1;
166
        return -1;
166
#endif
167
#endif
167
#endif  
168
#endif  
168
 
169
 
169
    t->kstack = (uint8_t *) frame_alloc(STACK_FRAMES, FRAME_KA | kmflags);
170
    t->kstack = (uint8_t *) frame_alloc(STACK_FRAMES, FRAME_KA | kmflags);
170
    if (!t->kstack) {
171
    if (!t->kstack) {
171
#ifdef ARCH_HAS_FPU
172
#ifdef ARCH_HAS_FPU
172
        if (t->saved_fpu_context)
173
        if (t->saved_fpu_context)
173
            slab_free(fpu_context_slab, t->saved_fpu_context);
174
            slab_free(fpu_context_slab, t->saved_fpu_context);
174
#endif
175
#endif
175
        return -1;
176
        return -1;
176
    }
177
    }
177
 
178
 
178
    return 0;
179
    return 0;
179
}
180
}
180
 
181
 
181
/** Destruction of thread_t object */
182
/** Destruction of thread_t object */
182
static int thr_destructor(void *obj)
183
static int thr_destructor(void *obj)
183
{
184
{
184
    thread_t *t = (thread_t *) obj;
185
    thread_t *t = (thread_t *) obj;
185
 
186
 
186
    /* call the architecture-specific part of the destructor */
187
    /* call the architecture-specific part of the destructor */
187
    thr_destructor_arch(t);
188
    thr_destructor_arch(t);
188
 
189
 
189
    frame_free(KA2PA(t->kstack));
190
    frame_free(KA2PA(t->kstack));
190
#ifdef ARCH_HAS_FPU
191
#ifdef ARCH_HAS_FPU
191
    if (t->saved_fpu_context)
192
    if (t->saved_fpu_context)
192
        slab_free(fpu_context_slab, t->saved_fpu_context);
193
        slab_free(fpu_context_slab, t->saved_fpu_context);
193
#endif
194
#endif
194
    return 1; /* One page freed */
195
    return 1; /* One page freed */
195
}
196
}
196
 
197
 
197
/** Initialize threads
198
/** Initialize threads
198
 *
199
 *
199
 * Initialize kernel threads support.
200
 * Initialize kernel threads support.
200
 *
201
 *
201
 */
202
 */
202
void thread_init(void)
203
void thread_init(void)
203
{
204
{
204
    THREAD = NULL;
205
    THREAD = NULL;
205
    atomic_set(&nrdy,0);
206
    atomic_set(&nrdy,0);
206
    thread_slab = slab_cache_create("thread_slab", sizeof(thread_t), 0,
207
    thread_slab = slab_cache_create("thread_slab", sizeof(thread_t), 0,
207
        thr_constructor, thr_destructor, 0);
208
        thr_constructor, thr_destructor, 0);
208
 
209
 
209
#ifdef ARCH_HAS_FPU
210
#ifdef ARCH_HAS_FPU
210
    fpu_context_slab = slab_cache_create("fpu_slab", sizeof(fpu_context_t),
211
    fpu_context_slab = slab_cache_create("fpu_slab", sizeof(fpu_context_t),
211
        FPU_CONTEXT_ALIGN, NULL, NULL, 0);
212
        FPU_CONTEXT_ALIGN, NULL, NULL, 0);
212
#endif
213
#endif
213
 
214
 
214
    btree_create(&threads_btree);
215
    btree_create(&threads_btree);
215
}
216
}
216
 
217
 
217
/** Make thread ready
218
/** Make thread ready
218
 *
219
 *
219
 * Switch thread t to the ready state.
220
 * Switch thread t to the ready state.
220
 *
221
 *
221
 * @param t Thread to make ready.
222
 * @param t Thread to make ready.
222
 *
223
 *
223
 */
224
 */
224
void thread_ready(thread_t *t)
225
void thread_ready(thread_t *t)
225
{
226
{
226
    cpu_t *cpu;
227
    cpu_t *cpu;
227
    runq_t *r;
228
    runq_t *r;
228
    ipl_t ipl;
229
    ipl_t ipl;
229
    int i, avg;
230
    int i, avg;
230
 
231
 
231
    ipl = interrupts_disable();
232
    ipl = interrupts_disable();
232
 
233
 
233
    spinlock_lock(&t->lock);
234
    spinlock_lock(&t->lock);
234
 
235
 
235
    ASSERT(!(t->state == Ready));
236
    ASSERT(!(t->state == Ready));
236
 
237
 
237
    i = (t->priority < RQ_COUNT - 1) ? ++t->priority : t->priority;
238
    i = (t->priority < RQ_COUNT - 1) ? ++t->priority : t->priority;
238
   
239
   
239
    cpu = CPU;
240
    cpu = CPU;
240
    if (t->flags & THREAD_FLAG_WIRED) {
241
    if (t->flags & THREAD_FLAG_WIRED) {
241
        ASSERT(t->cpu != NULL);
242
        ASSERT(t->cpu != NULL);
242
        cpu = t->cpu;
243
        cpu = t->cpu;
243
    }
244
    }
244
    t->state = Ready;
245
    t->state = Ready;
245
    spinlock_unlock(&t->lock);
246
    spinlock_unlock(&t->lock);
246
   
247
   
247
    /*
248
    /*
248
     * Append t to respective ready queue on respective processor.
249
     * Append t to respective ready queue on respective processor.
249
     */
250
     */
250
    r = &cpu->rq[i];
251
    r = &cpu->rq[i];
251
    spinlock_lock(&r->lock);
252
    spinlock_lock(&r->lock);
252
    list_append(&t->rq_link, &r->rq_head);
253
    list_append(&t->rq_link, &r->rq_head);
253
    r->n++;
254
    r->n++;
254
    spinlock_unlock(&r->lock);
255
    spinlock_unlock(&r->lock);
255
 
256
 
256
    atomic_inc(&nrdy);
257
    atomic_inc(&nrdy);
257
    avg = atomic_get(&nrdy) / config.cpu_active;
258
    avg = atomic_get(&nrdy) / config.cpu_active;
258
    atomic_inc(&cpu->nrdy);
259
    atomic_inc(&cpu->nrdy);
259
 
260
 
260
    interrupts_restore(ipl);
261
    interrupts_restore(ipl);
261
}
262
}
262
 
263
 
263
/** Create new thread
264
/** Create new thread
264
 *
265
 *
265
 * Create a new thread.
266
 * Create a new thread.
266
 *
267
 *
267
 * @param func      Thread's implementing function.
268
 * @param func      Thread's implementing function.
268
 * @param arg       Thread's implementing function argument.
269
 * @param arg       Thread's implementing function argument.
269
 * @param task      Task to which the thread belongs.
270
 * @param task      Task to which the thread belongs.
270
 * @param flags     Thread flags.
271
 * @param flags     Thread flags.
271
 * @param name      Symbolic name.
272
 * @param name      Symbolic name.
272
 * @param uncounted Thread's accounting doesn't affect accumulated task
273
 * @param uncounted Thread's accounting doesn't affect accumulated task
273
 *          accounting.
274
 *          accounting.
274
 *
275
 *
275
 * @return New thread's structure on success, NULL on failure.
276
 * @return New thread's structure on success, NULL on failure.
276
 *
277
 *
277
 */
278
 */
278
thread_t *thread_create(void (* func)(void *), void *arg, task_t *task,
279
thread_t *thread_create(void (* func)(void *), void *arg, task_t *task,
279
    int flags, char *name, bool uncounted)
280
    int flags, char *name, bool uncounted)
280
{
281
{
281
    thread_t *t;
282
    thread_t *t;
282
    ipl_t ipl;
283
    ipl_t ipl;
283
   
284
   
284
    t = (thread_t *) slab_alloc(thread_slab, 0);
285
    t = (thread_t *) slab_alloc(thread_slab, 0);
285
    if (!t)
286
    if (!t)
286
        return NULL;
287
        return NULL;
287
   
288
   
288
    /* Not needed, but good for debugging */
289
    /* Not needed, but good for debugging */
289
    memsetb((uintptr_t) t->kstack, THREAD_STACK_SIZE * 1 << STACK_FRAMES,
290
    memsetb((uintptr_t) t->kstack, THREAD_STACK_SIZE * 1 << STACK_FRAMES,
290
        0);
291
        0);
291
   
292
   
292
    ipl = interrupts_disable();
293
    ipl = interrupts_disable();
293
    spinlock_lock(&tidlock);
294
    spinlock_lock(&tidlock);
294
    t->tid = ++last_tid;
295
    t->tid = ++last_tid;
295
    spinlock_unlock(&tidlock);
296
    spinlock_unlock(&tidlock);
296
    interrupts_restore(ipl);
297
    interrupts_restore(ipl);
297
   
298
   
298
    context_save(&t->saved_context);
299
    context_save(&t->saved_context);
299
    context_set(&t->saved_context, FADDR(cushion), (uintptr_t) t->kstack,
300
    context_set(&t->saved_context, FADDR(cushion), (uintptr_t) t->kstack,
300
        THREAD_STACK_SIZE);
301
        THREAD_STACK_SIZE);
301
   
302
   
302
    the_initialize((the_t *) t->kstack);
303
    the_initialize((the_t *) t->kstack);
303
   
304
   
304
    ipl = interrupts_disable();
305
    ipl = interrupts_disable();
305
    t->saved_context.ipl = interrupts_read();
306
    t->saved_context.ipl = interrupts_read();
306
    interrupts_restore(ipl);
307
    interrupts_restore(ipl);
307
   
308
   
308
    memcpy(t->name, name, THREAD_NAME_BUFLEN);
309
    memcpy(t->name, name, THREAD_NAME_BUFLEN);
309
   
310
   
310
    t->thread_code = func;
311
    t->thread_code = func;
311
    t->thread_arg = arg;
312
    t->thread_arg = arg;
312
    t->ticks = -1;
313
    t->ticks = -1;
313
    t->cycles = 0;
314
    t->cycles = 0;
314
    t->uncounted = uncounted;
315
    t->uncounted = uncounted;
315
    t->priority = -1;       /* start in rq[0] */
316
    t->priority = -1;       /* start in rq[0] */
316
    t->cpu = NULL;
317
    t->cpu = NULL;
317
    t->flags = flags;
318
    t->flags = flags;
318
    t->state = Entering;
319
    t->state = Entering;
319
    t->call_me = NULL;
320
    t->call_me = NULL;
320
    t->call_me_with = NULL;
321
    t->call_me_with = NULL;
321
   
322
   
322
    timeout_initialize(&t->sleep_timeout);
323
    timeout_initialize(&t->sleep_timeout);
323
    t->sleep_interruptible = false;
324
    t->sleep_interruptible = false;
324
    t->sleep_queue = NULL;
325
    t->sleep_queue = NULL;
325
    t->timeout_pending = 0;
326
    t->timeout_pending = 0;
326
 
327
 
327
    t->in_copy_from_uspace = false;
328
    t->in_copy_from_uspace = false;
328
    t->in_copy_to_uspace = false;
329
    t->in_copy_to_uspace = false;
329
 
330
 
330
    t->interrupted = false;
331
    t->interrupted = false;
331
    t->join_type = None;
-
 
332
    t->detached = false;
332
    t->detached = false;
333
    waitq_initialize(&t->join_wq);
333
    waitq_initialize(&t->join_wq);
334
   
334
   
335
    t->rwlock_holder_type = RWLOCK_NONE;
335
    t->rwlock_holder_type = RWLOCK_NONE;
336
       
336
       
337
    t->task = task;
337
    t->task = task;
338
   
338
   
339
    t->fpu_context_exists = 0;
339
    t->fpu_context_exists = 0;
340
    t->fpu_context_engaged = 0;
340
    t->fpu_context_engaged = 0;
341
 
341
 
342
    /* might depend on previous initialization */
342
    /* might depend on previous initialization */
343
    thread_create_arch(t); 
343
    thread_create_arch(t); 
344
 
344
 
345
    ipl = interrupts_disable();  
-
 
346
    spinlock_lock(&task->lock);
-
 
347
    if (!task->accept_new_threads) {
-
 
348
        spinlock_unlock(&task->lock);
-
 
349
        slab_free(thread_slab, t);
-
 
350
        interrupts_restore(ipl);
-
 
351
        return NULL;
-
 
352
    } else {
-
 
353
        /*
-
 
354
         * Bump the reference count so that this task cannot be
-
 
355
         * destroyed while the new thread is being attached to it.
-
 
356
         */
-
 
357
        task->refcount++;
-
 
358
    }
-
 
359
    spinlock_unlock(&task->lock);
-
 
360
    interrupts_restore(ipl);
-
 
361
 
-
 
362
    if (!(flags & THREAD_FLAG_NOATTACH))
345
    if (!(flags & THREAD_FLAG_NOATTACH))
363
        thread_attach(t, task);
346
        thread_attach(t, task);
364
 
347
 
365
    return t;
348
    return t;
366
}
349
}
367
 
350
 
368
/** Destroy thread memory structure
351
/** Destroy thread memory structure
369
 *
352
 *
370
 * Detach thread from all queues, cpus etc. and destroy it.
353
 * Detach thread from all queues, cpus etc. and destroy it.
371
 *
354
 *
372
 * Assume thread->lock is held!!
355
 * Assume thread->lock is held!!
373
 */
356
 */
374
void thread_destroy(thread_t *t)
357
void thread_destroy(thread_t *t)
375
{
358
{
376
    bool destroy_task = false;
-
 
377
 
-
 
378
    ASSERT(t->state == Exiting || t->state == Undead);
359
    ASSERT(t->state == Exiting || t->state == JoinMe);
379
    ASSERT(t->task);
360
    ASSERT(t->task);
380
    ASSERT(t->cpu);
361
    ASSERT(t->cpu);
381
 
362
 
382
    spinlock_lock(&t->cpu->lock);
363
    spinlock_lock(&t->cpu->lock);
383
    if (t->cpu->fpu_owner == t)
364
    if (t->cpu->fpu_owner == t)
384
        t->cpu->fpu_owner = NULL;
365
        t->cpu->fpu_owner = NULL;
385
    spinlock_unlock(&t->cpu->lock);
366
    spinlock_unlock(&t->cpu->lock);
386
 
367
 
387
    spinlock_unlock(&t->lock);
368
    spinlock_unlock(&t->lock);
388
 
369
 
389
    spinlock_lock(&threads_lock);
370
    spinlock_lock(&threads_lock);
390
    btree_remove(&threads_btree, (btree_key_t) ((uintptr_t ) t), NULL);
371
    btree_remove(&threads_btree, (btree_key_t) ((uintptr_t ) t), NULL);
391
    spinlock_unlock(&threads_lock);
372
    spinlock_unlock(&threads_lock);
392
 
373
 
393
    /*
374
    /*
394
     * Detach from the containing task.
375
     * Detach from the containing task.
395
     */
376
     */
396
    spinlock_lock(&t->task->lock);
377
    spinlock_lock(&t->task->lock);
397
    list_remove(&t->th_link);
378
    list_remove(&t->th_link);
398
    if (--t->task->refcount == 0) {
-
 
399
        t->task->accept_new_threads = false;
-
 
400
        destroy_task = true;
-
 
401
    }
-
 
402
    spinlock_unlock(&t->task->lock);   
379
    spinlock_unlock(&t->task->lock);   
403
   
380
 
-
 
381
    /*
-
 
382
     * t is guaranteed to be the very last thread of its task.
404
    if (destroy_task)
383
     * It is safe to destroy the task.
-
 
384
     */
-
 
385
    if (atomic_predec(&t->task->refcount) == 0)
405
        task_destroy(t->task);
386
        task_destroy(t->task);
406
   
387
   
407
    /*
388
    /*
408
     * If the thread had a userspace context, free up its kernel_uarg
389
     * If the thread had a userspace context, free up its kernel_uarg
409
     * structure.
390
     * structure.
410
     */
391
     */
411
    if (t->flags & THREAD_FLAG_USPACE) {
392
    if (t->flags & THREAD_FLAG_USPACE) {
412
        ASSERT(t->thread_arg);
393
        ASSERT(t->thread_arg);
413
        free(t->thread_arg);
394
        free(t->thread_arg);
414
    }
395
    }
415
 
396
 
416
    slab_free(thread_slab, t);
397
    slab_free(thread_slab, t);
417
}
398
}
418
 
399
 
419
/** Make the thread visible to the system.
400
/** Make the thread visible to the system.
420
 *
401
 *
421
 * Attach the thread structure to the current task and make it visible in the
402
 * Attach the thread structure to the current task and make it visible in the
422
 * threads_btree.
403
 * threads_btree.
423
 *
404
 *
424
 * @param t Thread to be attached to the task.
405
 * @param t Thread to be attached to the task.
425
 * @param task  Task to which the thread is to be attached.
406
 * @param task  Task to which the thread is to be attached.
426
 */
407
 */
427
void thread_attach(thread_t *t, task_t *task)
408
void thread_attach(thread_t *t, task_t *task)
428
{
409
{
429
    ipl_t ipl;
410
    ipl_t ipl;
430
 
411
 
431
    /*
412
    /*
432
     * Attach to the current task.
413
     * Attach to the current task.
433
     */
414
     */
434
    ipl = interrupts_disable();  
415
    ipl = interrupts_disable();
435
    spinlock_lock(&task->lock);
416
    spinlock_lock(&task->lock);
436
    ASSERT(task->refcount);
417
    atomic_inc(&task->refcount);
-
 
418
    atomic_inc(&task->lifecount);
437
    list_append(&t->th_link, &task->th_head);
419
    list_append(&t->th_link, &task->th_head);
438
    if (task->refcount == 1)
-
 
439
        task->main_thread = t;
-
 
440
    spinlock_unlock(&task->lock);
420
    spinlock_unlock(&task->lock);
441
 
421
 
442
    /*
422
    /*
443
     * Register this thread in the system-wide list.
423
     * Register this thread in the system-wide list.
444
     */
424
     */
445
    spinlock_lock(&threads_lock);
425
    spinlock_lock(&threads_lock);
446
    btree_insert(&threads_btree, (btree_key_t) ((uintptr_t) t), (void *) t,
426
    btree_insert(&threads_btree, (btree_key_t) ((uintptr_t) t), (void *) t,
447
        NULL);
427
        NULL);
448
    spinlock_unlock(&threads_lock);
428
    spinlock_unlock(&threads_lock);
449
   
429
   
450
    interrupts_restore(ipl);
430
    interrupts_restore(ipl);
451
}
431
}
452
 
432
 
453
/** Terminate thread.
433
/** Terminate thread.
454
 *
434
 *
455
 * End current thread execution and switch it to the exiting state. All pending
435
 * End current thread execution and switch it to the exiting state. All pending
456
 * timeouts are executed.
436
 * timeouts are executed.
457
 */
437
 */
458
void thread_exit(void)
438
void thread_exit(void)
459
{
439
{
460
    ipl_t ipl;
440
    ipl_t ipl;
461
 
441
 
-
 
442
    if (atomic_predec(&TASK->lifecount) == 0) {
-
 
443
        /*
-
 
444
         * We are the last thread in the task that still has not exited.
-
 
445
         * With the exception of the moment the task was created, new
-
 
446
         * threads can only be created by threads of the same task.
-
 
447
         * We are safe to perform cleanup.
-
 
448
         */
-
 
449
        if (THREAD->flags & THREAD_FLAG_USPACE) {
-
 
450
            ipc_cleanup();
-
 
451
                futex_cleanup();
-
 
452
            klog_printf("Cleanup of task %llu completed.",
-
 
453
                TASK->taskid);
-
 
454
        }
-
 
455
    }
-
 
456
 
462
restart:
457
restart:
463
    ipl = interrupts_disable();
458
    ipl = interrupts_disable();
464
    spinlock_lock(&THREAD->lock);
459
    spinlock_lock(&THREAD->lock);
465
    if (THREAD->timeout_pending) {
460
    if (THREAD->timeout_pending) {
466
        /* busy waiting for timeouts in progress */
461
        /* busy waiting for timeouts in progress */
467
        spinlock_unlock(&THREAD->lock);
462
        spinlock_unlock(&THREAD->lock);
468
        interrupts_restore(ipl);
463
        interrupts_restore(ipl);
469
        goto restart;
464
        goto restart;
470
    }
465
    }
-
 
466
   
471
    THREAD->state = Exiting;
467
    THREAD->state = Exiting;
472
    spinlock_unlock(&THREAD->lock);
468
    spinlock_unlock(&THREAD->lock);
473
    scheduler();
469
    scheduler();
474
 
470
 
475
    /* Not reached */
471
    /* Not reached */
476
    while (1)
472
    while (1)
477
        ;
473
        ;
478
}
474
}
479
 
475
 
480
 
476
 
481
/** Thread sleep
477
/** Thread sleep
482
 *
478
 *
483
 * Suspend execution of the current thread.
479
 * Suspend execution of the current thread.
484
 *
480
 *
485
 * @param sec Number of seconds to sleep.
481
 * @param sec Number of seconds to sleep.
486
 *
482
 *
487
 */
483
 */
488
void thread_sleep(uint32_t sec)
484
void thread_sleep(uint32_t sec)
489
{
485
{
490
    thread_usleep(sec * 1000000);
486
    thread_usleep(sec * 1000000);
491
}
487
}
492
 
488
 
493
/** Wait for another thread to exit.
489
/** Wait for another thread to exit.
494
 *
490
 *
495
 * @param t Thread to join on exit.
491
 * @param t Thread to join on exit.
496
 * @param usec Timeout in microseconds.
492
 * @param usec Timeout in microseconds.
497
 * @param flags Mode of operation.
493
 * @param flags Mode of operation.
498
 *
494
 *
499
 * @return An error code from errno.h or an error code from synch.h.
495
 * @return An error code from errno.h or an error code from synch.h.
500
 */
496
 */
501
int thread_join_timeout(thread_t *t, uint32_t usec, int flags)
497
int thread_join_timeout(thread_t *t, uint32_t usec, int flags)
502
{
498
{
503
    ipl_t ipl;
499
    ipl_t ipl;
504
    int rc;
500
    int rc;
505
 
501
 
506
    if (t == THREAD)
502
    if (t == THREAD)
507
        return EINVAL;
503
        return EINVAL;
508
 
504
 
509
    /*
505
    /*
510
     * Since thread join can only be called once on an undetached thread,
506
     * Since thread join can only be called once on an undetached thread,
511
     * the thread pointer is guaranteed to be still valid.
507
     * the thread pointer is guaranteed to be still valid.
512
     */
508
     */
513
   
509
   
514
    ipl = interrupts_disable();
510
    ipl = interrupts_disable();
515
    spinlock_lock(&t->lock);
511
    spinlock_lock(&t->lock);
516
    ASSERT(!t->detached);
512
    ASSERT(!t->detached);
517
    spinlock_unlock(&t->lock);
513
    spinlock_unlock(&t->lock);
518
    interrupts_restore(ipl);
514
    interrupts_restore(ipl);
519
   
515
   
520
    rc = waitq_sleep_timeout(&t->join_wq, usec, flags);
516
    rc = waitq_sleep_timeout(&t->join_wq, usec, flags);
521
   
517
   
522
    return rc; 
518
    return rc; 
523
}
519
}
524
 
520
 
525
/** Detach thread.
521
/** Detach thread.
526
 *
522
 *
527
 * Mark the thread as detached, if the thread is already in the Undead state,
523
 * Mark the thread as detached, if the thread is already in the JoinMe state,
528
 * deallocate its resources.
524
 * deallocate its resources.
529
 *
525
 *
530
 * @param t Thread to be detached.
526
 * @param t Thread to be detached.
531
 */
527
 */
532
void thread_detach(thread_t *t)
528
void thread_detach(thread_t *t)
533
{
529
{
534
    ipl_t ipl;
530
    ipl_t ipl;
535
 
531
 
536
    /*
532
    /*
537
     * Since the thread is expected not to be already detached,
533
     * Since the thread is expected not to be already detached,
538
     * pointer to it must be still valid.
534
     * pointer to it must be still valid.
539
     */
535
     */
540
    ipl = interrupts_disable();
536
    ipl = interrupts_disable();
541
    spinlock_lock(&t->lock);
537
    spinlock_lock(&t->lock);
542
    ASSERT(!t->detached);
538
    ASSERT(!t->detached);
543
    if (t->state == Undead) {
539
    if (t->state == JoinMe) {
544
        thread_destroy(t);  /* unlocks &t->lock */
540
        thread_destroy(t);  /* unlocks &t->lock */
545
        interrupts_restore(ipl);
541
        interrupts_restore(ipl);
546
        return;
542
        return;
547
    } else {
543
    } else {
548
        t->detached = true;
544
        t->detached = true;
549
    }
545
    }
550
    spinlock_unlock(&t->lock);
546
    spinlock_unlock(&t->lock);
551
    interrupts_restore(ipl);
547
    interrupts_restore(ipl);
552
}
548
}
553
 
549
 
554
/** Thread usleep
550
/** Thread usleep
555
 *
551
 *
556
 * Suspend execution of the current thread.
552
 * Suspend execution of the current thread.
557
 *
553
 *
558
 * @param usec Number of microseconds to sleep.
554
 * @param usec Number of microseconds to sleep.
559
 *
555
 *
560
 */
556
 */
561
void thread_usleep(uint32_t usec)
557
void thread_usleep(uint32_t usec)
562
{
558
{
563
    waitq_t wq;
559
    waitq_t wq;
564
                 
560
                 
565
    waitq_initialize(&wq);
561
    waitq_initialize(&wq);
566
 
562
 
567
    (void) waitq_sleep_timeout(&wq, usec, SYNCH_FLAGS_NON_BLOCKING);
563
    (void) waitq_sleep_timeout(&wq, usec, SYNCH_FLAGS_NON_BLOCKING);
568
}
564
}
569
 
565
 
570
/** Register thread out-of-context invocation
566
/** Register thread out-of-context invocation
571
 *
567
 *
572
 * Register a function and its argument to be executed
568
 * Register a function and its argument to be executed
573
 * on next context switch to the current thread.
569
 * on next context switch to the current thread.
574
 *
570
 *
575
 * @param call_me      Out-of-context function.
571
 * @param call_me      Out-of-context function.
576
 * @param call_me_with Out-of-context function argument.
572
 * @param call_me_with Out-of-context function argument.
577
 *
573
 *
578
 */
574
 */
579
void thread_register_call_me(void (* call_me)(void *), void *call_me_with)
575
void thread_register_call_me(void (* call_me)(void *), void *call_me_with)
580
{
576
{
581
    ipl_t ipl;
577
    ipl_t ipl;
582
   
578
   
583
    ipl = interrupts_disable();
579
    ipl = interrupts_disable();
584
    spinlock_lock(&THREAD->lock);
580
    spinlock_lock(&THREAD->lock);
585
    THREAD->call_me = call_me;
581
    THREAD->call_me = call_me;
586
    THREAD->call_me_with = call_me_with;
582
    THREAD->call_me_with = call_me_with;
587
    spinlock_unlock(&THREAD->lock);
583
    spinlock_unlock(&THREAD->lock);
588
    interrupts_restore(ipl);
584
    interrupts_restore(ipl);
589
}
585
}
590
 
586
 
591
/** Print list of threads debug info */
587
/** Print list of threads debug info */
592
void thread_print_list(void)
588
void thread_print_list(void)
593
{
589
{
594
    link_t *cur;
590
    link_t *cur;
595
    ipl_t ipl;
591
    ipl_t ipl;
596
   
592
   
597
    /* Messing with thread structures, avoid deadlock */
593
    /* Messing with thread structures, avoid deadlock */
598
    ipl = interrupts_disable();
594
    ipl = interrupts_disable();
599
    spinlock_lock(&threads_lock);
595
    spinlock_lock(&threads_lock);
600
   
596
   
601
    printf("tid    name       address    state    task       ctx code    "
597
    printf("tid    name       address    state    task       ctx code    "
602
        "   stack      cycles     cpu  kstack     waitqueue\n");
598
        "   stack      cycles     cpu  kstack     waitqueue\n");
603
    printf("------ ---------- ---------- -------- ---------- --- --------"
599
    printf("------ ---------- ---------- -------- ---------- --- --------"
604
        "-- ---------- ---------- ---- ---------- ----------\n");
600
        "-- ---------- ---------- ---- ---------- ----------\n");
605
 
601
 
606
    for (cur = threads_btree.leaf_head.next;
602
    for (cur = threads_btree.leaf_head.next;
607
        cur != &threads_btree.leaf_head; cur = cur->next) {
603
        cur != &threads_btree.leaf_head; cur = cur->next) {
608
        btree_node_t *node;
604
        btree_node_t *node;
609
        unsigned int i;
605
        unsigned int i;
610
 
606
 
611
        node = list_get_instance(cur, btree_node_t, leaf_link);
607
        node = list_get_instance(cur, btree_node_t, leaf_link);
612
        for (i = 0; i < node->keys; i++) {
608
        for (i = 0; i < node->keys; i++) {
613
            thread_t *t;
609
            thread_t *t;
614
       
610
       
615
            t = (thread_t *) node->value[i];
611
            t = (thread_t *) node->value[i];
616
           
612
           
617
            uint64_t cycles;
613
            uint64_t cycles;
618
            char suffix;
614
            char suffix;
619
            order(t->cycles, &cycles, &suffix);
615
            order(t->cycles, &cycles, &suffix);
620
           
616
           
621
            printf("%-6llu %-10s %#10zx %-8s %#10zx %-3ld %#10zx "
617
            printf("%-6llu %-10s %#10zx %-8s %#10zx %-3ld %#10zx "
622
                "%#10zx %9llu%c ", t->tid, t->name, t,
618
                "%#10zx %9llu%c ", t->tid, t->name, t,
623
                thread_states[t->state], t->task, t->task->context,
619
                thread_states[t->state], t->task, t->task->context,
624
                t->thread_code, t->kstack, cycles, suffix);
620
                t->thread_code, t->kstack, cycles, suffix);
625
           
621
           
626
            if (t->cpu)
622
            if (t->cpu)
627
                printf("%-4zd", t->cpu->id);
623
                printf("%-4zd", t->cpu->id);
628
            else
624
            else
629
                printf("none");
625
                printf("none");
630
           
626
           
631
            if (t->state == Sleeping)
627
            if (t->state == Sleeping)
632
                printf(" %#10zx %#10zx", t->kstack,
628
                printf(" %#10zx %#10zx", t->kstack,
633
                    t->sleep_queue);
629
                    t->sleep_queue);
634
           
630
           
635
            printf("\n");
631
            printf("\n");
636
        }
632
        }
637
    }
633
    }
638
 
634
 
639
    spinlock_unlock(&threads_lock);
635
    spinlock_unlock(&threads_lock);
640
    interrupts_restore(ipl);
636
    interrupts_restore(ipl);
641
}
637
}
642
 
638
 
643
/** Check whether thread exists.
639
/** Check whether thread exists.
644
 *
640
 *
645
 * Note that threads_lock must be already held and
641
 * Note that threads_lock must be already held and
646
 * interrupts must be already disabled.
642
 * interrupts must be already disabled.
647
 *
643
 *
648
 * @param t Pointer to thread.
644
 * @param t Pointer to thread.
649
 *
645
 *
650
 * @return True if thread t is known to the system, false otherwise.
646
 * @return True if thread t is known to the system, false otherwise.
651
 */
647
 */
652
bool thread_exists(thread_t *t)
648
bool thread_exists(thread_t *t)
653
{
649
{
654
    btree_node_t *leaf;
650
    btree_node_t *leaf;
655
   
651
   
656
    return btree_search(&threads_btree, (btree_key_t) ((uintptr_t) t),
652
    return btree_search(&threads_btree, (btree_key_t) ((uintptr_t) t),
657
        &leaf) != NULL;
653
        &leaf) != NULL;
658
}
654
}
659
 
655
 
660
 
656
 
661
/** Update accounting of current thread.
657
/** Update accounting of current thread.
662
 *
658
 *
663
 * Note that thread_lock on THREAD must be already held and
659
 * Note that thread_lock on THREAD must be already held and
664
 * interrupts must be already disabled.
660
 * interrupts must be already disabled.
665
 *
661
 *
666
 */
662
 */
667
void thread_update_accounting(void)
663
void thread_update_accounting(void)
668
{
664
{
669
    uint64_t time = get_cycle();
665
    uint64_t time = get_cycle();
670
    THREAD->cycles += time - THREAD->last_cycle;
666
    THREAD->cycles += time - THREAD->last_cycle;
671
    THREAD->last_cycle = time;
667
    THREAD->last_cycle = time;
672
}
668
}
673
 
669
 
674
/** Process syscall to create new thread.
670
/** Process syscall to create new thread.
675
 *
671
 *
676
 */
672
 */
677
unative_t sys_thread_create(uspace_arg_t *uspace_uarg, char *uspace_name,
673
unative_t sys_thread_create(uspace_arg_t *uspace_uarg, char *uspace_name,
678
    thread_id_t *uspace_thread_id)
674
    thread_id_t *uspace_thread_id)
679
{
675
{
680
    thread_t *t;
676
    thread_t *t;
681
    char namebuf[THREAD_NAME_BUFLEN];
677
    char namebuf[THREAD_NAME_BUFLEN];
682
    uspace_arg_t *kernel_uarg;
678
    uspace_arg_t *kernel_uarg;
683
    int rc;
679
    int rc;
684
 
680
 
685
    rc = copy_from_uspace(namebuf, uspace_name, THREAD_NAME_BUFLEN);
681
    rc = copy_from_uspace(namebuf, uspace_name, THREAD_NAME_BUFLEN);
686
    if (rc != 0)
682
    if (rc != 0)
687
        return (unative_t) rc;
683
        return (unative_t) rc;
688
 
684
 
689
    kernel_uarg = (uspace_arg_t *) malloc(sizeof(uspace_arg_t), 0);
685
    kernel_uarg = (uspace_arg_t *) malloc(sizeof(uspace_arg_t), 0);
690
    rc = copy_from_uspace(kernel_uarg, uspace_uarg, sizeof(uspace_arg_t));
686
    rc = copy_from_uspace(kernel_uarg, uspace_uarg, sizeof(uspace_arg_t));
691
    if (rc != 0) {
687
    if (rc != 0) {
692
        free(kernel_uarg);
688
        free(kernel_uarg);
693
        return (unative_t) rc;
689
        return (unative_t) rc;
694
    }
690
    }
695
 
691
 
696
    t = thread_create(uinit, kernel_uarg, TASK,
692
    t = thread_create(uinit, kernel_uarg, TASK,
697
        THREAD_FLAG_USPACE | THREAD_FLAG_NOATTACH, namebuf, false);
693
        THREAD_FLAG_USPACE | THREAD_FLAG_NOATTACH, namebuf, false);
698
    if (t) {
694
    if (t) {
699
        if (uspace_thread_id != NULL) {
695
        if (uspace_thread_id != NULL) {
700
            int rc;
696
            int rc;
701
 
697
 
702
            rc = copy_to_uspace(uspace_thread_id, &t->tid,
698
            rc = copy_to_uspace(uspace_thread_id, &t->tid,
703
                sizeof(t->tid));
699
                sizeof(t->tid));
704
            if (rc != 0) {
700
            if (rc != 0) {
705
                ipl_t ipl;
-
 
706
 
-
 
707
                /*
701
                /*
708
                 * We have encountered a failure, but the thread
702
                 * We have encountered a failure, but the thread
709
                 * has already been created. We need to undo its
703
                 * has already been created. We need to undo its
710
                 * creation now.
704
                 * creation now.
711
                 */
705
                 */
712
 
706
 
713
                /*
707
                /*
714
                 * The new thread structure is initialized,
708
                 * The new thread structure is initialized, but
715
                 * but is still not visible to the system.
709
                 * is still not visible to the system.
716
                 * We can safely deallocate it.
710
                 * We can safely deallocate it.
717
                 */
711
                 */
718
                slab_free(thread_slab, t);
712
                slab_free(thread_slab, t);
719
                free(kernel_uarg);
713
                free(kernel_uarg);
720
 
714
 
721
                /*
-
 
722
                 * Now we need to decrement the task reference
-
 
723
                 * counter. Because we are running within the
-
 
724
                 * same task, thread t is not the last thread
-
 
725
                 * in the task, so it is safe to merely
-
 
726
                 * decrement the counter.
-
 
727
                 */
-
 
728
                ipl = interrupts_disable();
-
 
729
                spinlock_lock(&TASK->lock);
-
 
730
                TASK->refcount--;
-
 
731
                spinlock_unlock(&TASK->lock);
-
 
732
                interrupts_restore(ipl);
-
 
733
 
-
 
734
                return (unative_t) rc;
715
                return (unative_t) rc;
735
             }
716
             }
736
        }
717
        }
737
        thread_attach(t, TASK);
718
        thread_attach(t, TASK);
738
        thread_ready(t);
719
        thread_ready(t);
739
 
720
 
740
        return 0;
721
        return 0;
741
    } else
722
    } else
742
        free(kernel_uarg);
723
        free(kernel_uarg);
743
 
724
 
744
    return (unative_t) ENOMEM;
725
    return (unative_t) ENOMEM;
745
}
726
}
746
 
727
 
747
/** Process syscall to terminate thread.
728
/** Process syscall to terminate thread.
748
 *
729
 *
749
 */
730
 */
750
unative_t sys_thread_exit(int uspace_status)
731
unative_t sys_thread_exit(int uspace_status)
751
{
732
{
752
    thread_exit();
733
    thread_exit();
753
    /* Unreachable */
734
    /* Unreachable */
754
    return 0;
735
    return 0;
755
}
736
}
756
 
737
 
757
/** Syscall for getting TID.
738
/** Syscall for getting TID.
758
 *
739
 *
759
 * @param uspace_thread_id Userspace address of 8-byte buffer where to store
740
 * @param uspace_thread_id Userspace address of 8-byte buffer where to store
760
 * current thread ID.
741
 * current thread ID.
761
 *
742
 *
762
 * @return 0 on success or an error code from @ref errno.h.
743
 * @return 0 on success or an error code from @ref errno.h.
763
 */
744
 */
764
unative_t sys_thread_get_id(thread_id_t *uspace_thread_id)
745
unative_t sys_thread_get_id(thread_id_t *uspace_thread_id)
765
{
746
{
766
    /*
747
    /*
767
     * No need to acquire lock on THREAD because tid
748
     * No need to acquire lock on THREAD because tid
768
     * remains constant for the lifespan of the thread.
749
     * remains constant for the lifespan of the thread.
769
     */
750
     */
770
    return (unative_t) copy_to_uspace(uspace_thread_id, &THREAD->tid,
751
    return (unative_t) copy_to_uspace(uspace_thread_id, &THREAD->tid,
771
        sizeof(THREAD->tid));
752
        sizeof(THREAD->tid));
772
}
753
}
773
 
754
 
774
/** @}
755
/** @}
775
 */
756
 */
776
 
757