source: mainline/uspace/lib/c/generic/thread.c@ 5a324d99

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

Remove unused macros.

  • Property mode set to 100644
File size: 4.5 KB
Line 
1/*
2 * Copyright (c) 2006 Jakub Jermar
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
29/** @addtogroup libc
30 * @{
31 */
32/** @file
33 */
34
35#include <thread.h>
36#include <libc.h>
37#include <stdlib.h>
38#include <libarch/faddr.h>
39#include <abi/proc/uarg.h>
40#include <fibril.h>
41#include <stack.h>
42#include <str.h>
43#include <async.h>
44#include <errno.h>
45#include <as.h>
46#include "private/thread.h"
47
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.
53 *
54 * @param uarg Pointer to userspace argument structure.
55 *
56 */
57void __thread_main(uspace_arg_t *uarg)
58{
59 fibril_t *fibril = fibril_setup();
60 if (fibril == NULL)
61 thread_exit(0);
62
63 __tcb_set(fibril->tcb);
64
65 uarg->uspace_thread_function(uarg->uspace_thread_arg);
66 /*
67 * XXX: we cannot free the userspace stack while running on it
68 *
69 * free(uarg->uspace_stack);
70 * free(uarg);
71 */
72
73 /* If there is a manager, destroy it */
74 async_destroy_manager();
75 fibril_teardown(fibril);
76
77 thread_exit(0);
78}
79
80/** Create userspace thread.
81 *
82 * This function creates new userspace thread and allocates userspace
83 * stack and userspace argument structure for it.
84 *
85 * @param function Function implementing the thread.
86 * @param arg Argument to be passed to thread.
87 * @param name Symbolic name of the thread.
88 * @param tid Thread ID of the newly created thread.
89 *
90 * @return Zero on success or a code from @ref errno.h on failure.
91 */
92int thread_create(void (* function)(void *), void *arg, const char *name,
93 thread_id_t *tid)
94{
95 uspace_arg_t *uarg =
96 (uspace_arg_t *) malloc(sizeof(uspace_arg_t));
97 if (!uarg)
98 return ENOMEM;
99
100 size_t stack_size = stack_size_get();
101 void *stack = as_area_create(AS_AREA_ANY, stack_size,
102 AS_AREA_READ | AS_AREA_WRITE | AS_AREA_CACHEABLE | AS_AREA_GUARD |
103 AS_AREA_LATE_RESERVE);
104 if (stack == AS_MAP_FAILED) {
105 free(uarg);
106 return ENOMEM;
107 }
108
109 uarg->uspace_entry = (void *) FADDR(__thread_entry);
110 uarg->uspace_stack = stack;
111 uarg->uspace_stack_size = stack_size;
112 uarg->uspace_thread_function = function;
113 uarg->uspace_thread_arg = arg;
114 uarg->uspace_uarg = uarg;
115
116 int rc = __SYSCALL4(SYS_THREAD_CREATE, (sysarg_t) uarg,
117 (sysarg_t) name, (sysarg_t) str_size(name), (sysarg_t) tid);
118
119 if (rc != EOK) {
120 /*
121 * Failed to create a new thread.
122 * Free up the allocated data.
123 */
124 as_area_destroy(stack);
125 free(uarg);
126 }
127
128 return rc;
129}
130
131/** Terminate current thread.
132 *
133 * @param status Exit status. Currently not used.
134 *
135 */
136void thread_exit(int status)
137{
138 __SYSCALL1(SYS_THREAD_EXIT, (sysarg_t) status);
139
140 /* Unreachable */
141 while (1);
142}
143
144/** Detach thread.
145 *
146 * Currently not implemented.
147 *
148 * @param thread TID.
149 */
150void thread_detach(thread_id_t thread)
151{
152}
153
154/** Join thread.
155 *
156 * Currently not implemented.
157 *
158 * @param thread TID.
159 *
160 * @return Thread exit status.
161 */
162int thread_join(thread_id_t thread)
163{
164 return 0;
165}
166
167/** Get current thread ID.
168 *
169 * @return Current thread ID.
170 */
171thread_id_t thread_get_id(void)
172{
173 thread_id_t thread_id;
174
175 (void) __SYSCALL1(SYS_THREAD_GET_ID, (sysarg_t) &thread_id);
176
177 return thread_id;
178}
179
180/** @}
181 */
Note: See TracBrowser for help on using the repository browser.