Merge branches 'hammer2' and 'master' of ssh://crater.dragonflybsd.org/repository...
[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$
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
36 #include "libc_private.h"
37 #include "initfini.c"
38 #include "crtbrand.c"
39
40 typedef void (*fptr)(void);
41
42 extern void _start(char *, ...);
43
44 #ifdef GCRT
45 extern void _mcleanup(void);
46 extern void monstartup(void *, void *);
47 extern int eprol;
48 extern int etext;
49 #endif
50
51 void _start1(fptr, int, char *[]) __dead2;
52
53 /* The entry function, C part. */
54 void
55 _start1(fptr cleanup, int argc, char *argv[])
56 {
57     char **env;
58
59     env = argv + argc + 1;
60     environ = env;
61     if (argc > 0 && argv[0] != NULL)
62         handle_progname(argv[0]);
63
64     /*
65      * Setup the initial TLS space.  The RTLD does not set up our TLS
66      * (it can't, it doesn't know how our errno is declared).  It simply
67      * does all the groundwork required so that we can call
68      * _rtld_allocate_tls().
69      */
70     _init_tls();
71     _rtld_call_init();
72
73     if(&_DYNAMIC != NULL)
74         atexit(cleanup);
75
76 #ifdef GCRT
77     atexit(_mcleanup);
78     monstartup(&eprol, &etext);
79 __asm__("eprol:");
80 #endif
81
82     handle_static_init(argc, argv, env);
83     exit(main(argc, argv, env));
84 }
85
86 __asm(".hidden  _start1");