source: mainline/uspace/lib/c/generic/libc.c@ 8a1fb09

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since 8a1fb09 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
RevLine 
[3eddaff]1/*
[df4ed85]2 * Copyright (c) 2005 Martin Decky
[3eddaff]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 */
[a46da63]28
29/** @addtogroup lc Libc
[433131d]30 * @brief HelenOS C library
[a46da63]31 * @{
32 * @}
33 */
[433131d]34
[a46da63]35/** @addtogroup libc generic
36 * @ingroup lc
[b2951e2]37 * @{
38 */
[433131d]39
[b2951e2]40/** @file
[433131d]41 */
[3eddaff]42
43#include <libc.h>
[47b7006]44#include <stdlib.h>
[fa23560]45#include <tls.h>
[bc1f1c2]46#include <fibril.h>
[47b7006]47#include <task.h>
[c98e6ee]48#include <loader/pcb.h>
[e26a4633]49#include "private/libc.h"
[fc5f7a8]50#include "private/async.h"
[47b7006]51#include "private/async_sess.h"
52#include "private/malloc.h"
53#include "private/io.h"
[07d960a]54
[7fb3f1c]55#ifdef CONFIG_RTLD
[8a1fb09]56#include <rtld/rtld.h>
[7fb3f1c]57#endif
[1ea99cc]58
[47b7006]59static bool env_setup = false;
[350514c]60
[c98e6ee]61void __main(void *pcb_ptr)
[a46da63]62{
[3292623]63 /* Initialize user task run-time environment */
[47b7006]64 __malloc_init();
[db24058]65 __async_init();
[47b7006]66 __async_sess_init();
67
[433131d]68 fibril_t *fibril = fibril_setup();
[47b7006]69 if (fibril == NULL)
70 abort();
71
[433131d]72 __tcb_set(fibril->tcb);
[663c5a6]73
[c98e6ee]74 /* Save the PCB pointer */
[433131d]75 __pcb = (pcb_t *) pcb_ptr;
76
[47b7006]77 /* The basic run-time environment is setup */
78 env_setup = true;
79
[433131d]80 int argc;
81 char **argv;
82
[1ea99cc]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
[47b7006]88 /*
89 * Get command line arguments and initialize
90 * standard input and output
91 */
[c98e6ee]92 if (__pcb == NULL) {
93 argc = 0;
94 argv = NULL;
[db24058]95 __stdio_init(0, NULL);
[c98e6ee]96 } else {
97 argc = __pcb->argc;
98 argv = __pcb->argv;
[db24058]99 __stdio_init(__pcb->filc, __pcb->filv);
[7591b27d]100 (void) chdir(__pcb->cwd);
[c98e6ee]101 }
[433131d]102
[47b7006]103 /*
104 * Run main() and set task return value
105 * according the result
106 */
107 int retval = main(argc, argv);
108 exit(retval);
109}
[7114d83]110
[47b7006]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);
[3eddaff]123}
124
[47b7006]125void abort(void)
[a46da63]126{
[47b7006]127 __SYSCALL1(SYS_TASK_EXIT, true);
128
129 /* Unreachable */
130 while (1);
[3eddaff]131}
[b2951e2]132
[a46da63]133/** @}
[b2951e2]134 */
Note: See TracBrowser for help on using the repository browser.