source: mainline/uspace/lib/c/generic/thread.c@ c0699467

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

do not provide general access to kernel headers from uspace, only allow specific headers to be accessed or shared
externalize headers which serve as kernel/uspace API/ABI into a special tree

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