Merge branch 'vendor/AWK'
[dragonfly.git] / lib / csu / i386 / crt1_c.c
1 /*-
2  * Copyright 1996-1998 John D. Polstra.
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  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  *
14  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
15  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
16  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
17  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
18  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
19  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
20  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
21  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
23  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24  *
25  * $FreeBSD: src/lib/csu/i386-elf/crt1.c, svn 200038 2009/12/02 kib $
26  */
27
28 #ifndef __GNUC__
29 #error "GCC is needed to compile this file"
30 #endif
31
32 #include <machine/tls.h>
33 #include <stddef.h>
34 #include <stdlib.h>
35 #include "crtbrand.c"
36
37 typedef void (*fptr)(void);
38
39 extern void _fini(void);
40 extern void _init(void);
41 extern int main(int, char **, char **);
42
43 #ifdef GCRT
44 extern void _mcleanup(void);
45 extern void monstartup(void *, void *);
46 extern int eprol;
47 extern int etext;
48 #endif
49
50 extern int _DYNAMIC;
51 #pragma weak _DYNAMIC
52
53 char **environ;
54 char *__progname = "";
55 void _start1(fptr, int, char *[]) __dead2;
56
57 void
58 _start1(fptr cleanup, int argc, char *argv[])
59 {
60     char **env;
61
62     env = argv + argc + 1;
63     environ = env;
64     if(argc > 0 && argv[0] != NULL) {
65         char *s;
66         __progname = argv[0];
67         for (s = __progname; *s != '\0'; s++)
68             if (*s == '/')
69                 __progname = s + 1;
70     }
71
72     /*
73      * Setup the initial TLS space.  The RTLD does not set up our TLS
74      * (it can't, it doesn't know how our errno is declared).  It simply
75      * does all the groundwork required so that we can call
76      * _rtld_allocate_tls().
77      */
78     _init_tls();
79     _rtld_call_init();
80
81     if(&_DYNAMIC != NULL)
82         atexit(cleanup);
83
84 #ifdef GCRT
85     atexit(_mcleanup);
86 #endif
87     atexit(_fini);
88 #ifdef GCRT
89     monstartup(&eprol, &etext);
90 __asm__("eprol:");
91 #endif
92     _init();
93     exit( main(argc, argv, env) );
94 }
95
96 __asm(".hidden  _start1");