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

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

Unify the default stack size used by userspace threads and fibrils.

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