source: mainline/uspace/lib/libc/generic/thread.c@ 21f32ee1

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

thread_exit() needs to be noreturn as well

  • Property mode set to 100644
File size: 4.3 KB
RevLine 
[c05290e]1/*
[df4ed85]2 * Copyright (c) 2006 Jakub Jermar
[c05290e]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.
[b2951e2]27 */
28
[afbe96a]29/** @addtogroup libc
[b2951e2]30 * @{
31 */
32/** @file
[c05290e]33 */
34
35#include <thread.h>
36#include <libc.h>
[e5a1f82f]37#include <stdlib.h>
[afbe96a]38#include <libarch/faddr.h>
[e5a1f82f]39#include <kernel/proc/uarg.h>
[bc1f1c2]40#include <fibril.h>
[c4c5de5]41#include <string.h>
[80649a91]42#include <async.h>
[29a9f62]43
[fcd10af]44#ifndef THREAD_INITIAL_STACK_PAGES_NO
45#define THREAD_INITIAL_STACK_PAGES_NO 1
46#endif
47
[81e55099]48/** Main thread function.
49 *
50 * This function is called from __thread_entry() and is used
51 * to call the thread's implementing function and perform cleanup
52 * and exit when thread returns back. Do not call this function
53 * directly.
54 *
55 * @param uarg Pointer to userspace argument structure.
56 */
[29a9f62]57void __thread_main(uspace_arg_t *uarg)
[e5a1f82f]58{
[bc1f1c2]59 fibril_t *f;
[80649a91]60
[bc1f1c2]61 f = fibril_setup();
62 __tcb_set(f->tcb);
[116d3f6f]63
[e5a1f82f]64 uarg->uspace_thread_function(uarg->uspace_thread_arg);
[341140c]65 /* XXX: we cannot free the userspace stack while running on it */
[4680ef5]66// free(uarg->uspace_stack);
67// free(uarg);
[29a9f62]68
[53ca318]69 /* If there is a manager, destroy it */
[80649a91]70 async_destroy_manager();
[bc1f1c2]71 fibril_teardown(f);
[29a9f62]72
[e5a1f82f]73 thread_exit(0);
74}
[c05290e]75
[81e55099]76/** Create userspace thread.
77 *
78 * This function creates new userspace thread and allocates userspace
79 * stack and userspace argument structure for it.
80 *
81 * @param function Function implementing the thread.
82 * @param arg Argument to be passed to thread.
83 * @param name Symbolic name of the thread.
[201abde]84 * @param tid Thread ID of the newly created thread.
[81e55099]85 *
[201abde]86 * @return Zero on success or a code from @ref errno.h on failure.
[81e55099]87 */
[f6d2c81]88int thread_create(void (* function)(void *), void *arg, char *name,
89 thread_id_t *tid)
[c05290e]90{
[e5a1f82f]91 char *stack;
92 uspace_arg_t *uarg;
[f6d2c81]93 int rc;
[e5a1f82f]94
[74359c6]95 stack = (char *) malloc(getpagesize() * THREAD_INITIAL_STACK_PAGES_NO);
[e5a1f82f]96 if (!stack)
97 return -1;
98
99 uarg = (uspace_arg_t *) malloc(sizeof(uspace_arg_t));
100 if (!uarg) {
101 free(stack);
102 return -1;
103 }
[81e55099]104
[e5a1f82f]105 uarg->uspace_entry = (void *) FADDR(__thread_entry);
106 uarg->uspace_stack = (void *) stack;
[81e55099]107 uarg->uspace_thread_function = function;
[e5a1f82f]108 uarg->uspace_thread_arg = arg;
109 uarg->uspace_uarg = uarg;
110
[7faabb7]111 rc = __SYSCALL4(SYS_THREAD_CREATE, (sysarg_t) uarg, (sysarg_t) name,
[9eb3623]112 (sysarg_t) str_size(name), (sysarg_t) tid);
[f6d2c81]113
[341140c]114 if (rc) {
[f6d2c81]115 /*
116 * Failed to create a new thread.
117 * Free up the allocated structures.
118 */
119 free(uarg);
120 free(stack);
121 }
122
123 return rc;
[c05290e]124}
125
[81e55099]126/** Terminate current thread.
127 *
[096ba7a]128 * @param status Exit status. Currently not used.
[81e55099]129 */
[c05290e]130void thread_exit(int status)
131{
132 __SYSCALL1(SYS_THREAD_EXIT, (sysarg_t) status);
[a2c58f6]133 for (;;)
134 ;
[c05290e]135}
[01ff41c]136
[dd655970]137/** Detach thread.
138 *
139 * Currently not implemented.
140 *
141 * @param thread TID.
142 */
[201abde]143void thread_detach(thread_id_t thread)
[dd655970]144{
145}
146
147/** Join thread.
148 *
149 * Currently not implemented.
150 *
151 * @param thread TID.
152 *
153 * @return Thread exit status.
154 */
[201abde]155int thread_join(thread_id_t thread)
[dd655970]156{
[a2c58f6]157 return 0;
[dd655970]158}
159
160/** Get current thread ID.
161 *
162 * @return Current thread ID.
163 */
[201abde]164thread_id_t thread_get_id(void)
[dd655970]165{
[201abde]166 thread_id_t thread_id;
167
168 (void) __SYSCALL1(SYS_THREAD_GET_ID, (sysarg_t) &thread_id);
169
170 return thread_id;
[dd655970]171}
172
[afbe96a]173/** @}
[b2951e2]174 */
Note: See TracBrowser for help on using the repository browser.