]> git.karo-electronics.de Git - karo-tx-redboot.git/blob - packages/language/c/libc/startup/v2_0/src/cstartup.cxx
unified MX27, MX25, MX37 trees
[karo-tx-redboot.git] / packages / language / c / libc / startup / v2_0 / src / cstartup.cxx
1 //=======================================================================
2 //
3 //      cstartup.cxx
4 //
5 //      Support for startup of ISO C environment
6 //
7 //========================================================================
8 //####ECOSGPLCOPYRIGHTBEGIN####
9 // -------------------------------------------
10 // This file is part of eCos, the Embedded Configurable Operating System.
11 // Copyright (C) 1998, 1999, 2000, 2001, 2002 Red Hat, Inc.
12 //
13 // eCos is free software; you can redistribute it and/or modify it under
14 // the terms of the GNU General Public License as published by the Free
15 // Software Foundation; either version 2 or (at your option) any later version.
16 //
17 // eCos is distributed in the hope that it will be useful, but WITHOUT ANY
18 // WARRANTY; without even the implied warranty of MERCHANTABILITY or
19 // FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
20 // for more details.
21 //
22 // You should have received a copy of the GNU General Public License along
23 // with eCos; if not, write to the Free Software Foundation, Inc.,
24 // 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
25 //
26 // As a special exception, if other files instantiate templates or use macros
27 // or inline functions from this file, or you compile this file and link it
28 // with other works to produce a work based on this file, this file does not
29 // by itself cause the resulting work to be covered by the GNU General Public
30 // License. However the source code for this file must still be made available
31 // in accordance with section (3) of the GNU General Public License.
32 //
33 // This exception does not invalidate any other reasons why a work based on
34 // this file might be covered by the GNU General Public License.
35 //
36 // Alternative licenses for eCos may be arranged by contacting Red Hat, Inc.
37 // at http://sources.redhat.com/ecos/ecos-license/
38 // -------------------------------------------
39 //####ECOSGPLCOPYRIGHTEND####
40 //========================================================================
41 //#####DESCRIPTIONBEGIN####
42 //
43 // Author(s):     jlarmour
44 // Contributors:  
45 // Date:          2000-04-30
46 // Purpose:     
47 // Description: 
48 // Usage:       
49 //
50 //####DESCRIPTIONEND####
51 //
52 //========================================================================
53
54 // CONFIGURATION
55
56 #include <pkgconf/system.h>         // CYGPKG_KERNEL
57 #include <pkgconf/libc_startup.h>   // Configuration header
58
59 // INCLUDES
60
61 #include <cyg/infra/cyg_type.h>     // Common type definitions and support
62 #include <cyg/infra/cyg_trac.h>     // Common tracing support
63
64 #ifdef CYGPKG_KERNEL
65 # include <pkgconf/kernel.h>        // eCos kernel configuration
66 # include <cyg/kernel/thread.hxx>   // eCos thread support
67 # include <cyg/kernel/thread.inl>
68 #endif
69
70
71 // FUNCTION PROTOTYPES
72
73 externC void
74 cyg_libc_invoke_main( CYG_ADDRWORD );
75
76 // EXTERNS
77
78 #ifdef CYGSEM_LIBC_STARTUP_MAIN_THREAD
79 extern Cyg_Thread cyg_libc_main_thread;
80
81 // FUNCTIONS
82
83 externC void
84 cyg_iso_c_start( void )
85 {
86     static int initialized=0;
87
88     CYG_REPORT_FUNCNAME( "cyg_iso_c_start" );
89     CYG_REPORT_FUNCARGVOID();
90
91     if (initialized++ == 0) {
92         CYG_TRACE0( true, "Resuming cyg_libc_main_thread" );
93         cyg_libc_main_thread.resume();
94     }
95     CYG_REPORT_RETURN();
96
97 } // cyg_iso_c_start()
98
99 // define an object that will automatically call cyg_iso_c_start()
100
101 class cyg_libc_startup_dummy_constructor_class {
102 public:
103     cyg_libc_startup_dummy_constructor_class() { cyg_iso_c_start(); }
104 };
105
106 static cyg_libc_startup_dummy_constructor_class cyg_libc_startup_obj
107                                   CYGBLD_ATTRIB_INIT_AFTER(CYG_INIT_LIBC);
108
109 #elif defined( CYGSEM_LIBC_STARTUP_MAIN_INITCONTEXT )
110
111 // otherwise replace the default cyg_user_start(), but of course keep
112 // it a weak symbol in case the user wants to override
113
114 externC void
115 cyg_user_start(void) CYGBLD_ATTRIB_WEAK;
116
117 externC void
118 cyg_user_start(void)
119 {
120     cyg_libc_invoke_main(0);
121 }
122
123 externC void
124 cyg_iso_c_start( void )
125 {
126     static int initialized=0;
127
128     CYG_REPORT_FUNCNAME( "cyg_iso_c_start" );
129     CYG_REPORT_FUNCARGVOID();
130
131     // In case they want to explicitly invoke the C library from
132     // cyg_user_start() themselves
133     if (initialized++ == 0) {
134         cyg_libc_invoke_main(0);
135     }
136     CYG_REPORT_RETURN();
137 }
138 #else
139
140 externC void
141 cyg_iso_c_start( void ) {}
142
143 #endif
144
145 // EOF cstartup.cxx