source: mainline/uspace/lib/c/generic/libc.c@ 9fb1397

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since 9fb1397 was 8a1fb09, checked in by Jiri Svoboda <jiri@…>, 14 years ago

Integrate rest of rtld/ into C library.

  • Property mode set to 100644
File size: 3.1 KB
Line 
1/*
2 * Copyright (c) 2005 Martin Decky
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 lc Libc
30 * @brief HelenOS C library
31 * @{
32 * @}
33 */
34
35/** @addtogroup libc generic
36 * @ingroup lc
37 * @{
38 */
39
40/** @file
41 */
42
43#include <libc.h>
44#include <stdlib.h>
45#include <tls.h>
46#include <fibril.h>
47#include <task.h>
48#include <loader/pcb.h>
49#include "private/libc.h"
50#include "private/async.h"
51#include "private/async_sess.h"
52#include "private/malloc.h"
53#include "private/io.h"
54
55#ifdef CONFIG_RTLD
56#include <rtld/rtld.h>
57#endif
58
59static bool env_setup = false;
60
61void __main(void *pcb_ptr)
62{
63 /* Initialize user task run-time environment */
64 __malloc_init();
65 __async_init();
66 __async_sess_init();
67
68 fibril_t *fibril = fibril_setup();
69 if (fibril == NULL)
70 abort();
71
72 __tcb_set(fibril->tcb);
73
74 /* Save the PCB pointer */
75 __pcb = (pcb_t *) pcb_ptr;
76
77 /* The basic run-time environment is setup */
78 env_setup = true;
79
80 int argc;
81 char **argv;
82
83#ifdef __IN_SHARED_LIBC__
84 if (__pcb != NULL && __pcb->rtld_runtime != NULL) {
85 runtime_env = (runtime_env_t *) __pcb->rtld_runtime;
86 }
87#endif
88 /*
89 * Get command line arguments and initialize
90 * standard input and output
91 */
92 if (__pcb == NULL) {
93 argc = 0;
94 argv = NULL;
95 __stdio_init(0, NULL);
96 } else {
97 argc = __pcb->argc;
98 argv = __pcb->argv;
99 __stdio_init(__pcb->filc, __pcb->filv);
100 (void) chdir(__pcb->cwd);
101 }
102
103 /*
104 * Run main() and set task return value
105 * according the result
106 */
107 int retval = main(argc, argv);
108 exit(retval);
109}
110
111void exit(int status)
112{
113 if (env_setup) {
114 __stdio_done();
115 task_retval(status);
116 fibril_teardown(__tcb_get()->fibril_data);
117 }
118
119 __SYSCALL1(SYS_TASK_EXIT, false);
120
121 /* Unreachable */
122 while (1);
123}
124
125void abort(void)
126{
127 __SYSCALL1(SYS_TASK_EXIT, true);
128
129 /* Unreachable */
130 while (1);
131}
132
133/** @}
134 */
Note: See TracBrowser for help on using the repository browser.