sl@0
|
1 |
// Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
2 |
// All rights reserved.
|
sl@0
|
3 |
// This component and the accompanying materials are made available
|
sl@0
|
4 |
// under the terms of "Eclipse Public License v1.0"
|
sl@0
|
5 |
// which accompanies this distribution, and is available
|
sl@0
|
6 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
7 |
//
|
sl@0
|
8 |
// Initial Contributors:
|
sl@0
|
9 |
// Nokia Corporation - initial contribution.
|
sl@0
|
10 |
//
|
sl@0
|
11 |
// Contributors:
|
sl@0
|
12 |
//
|
sl@0
|
13 |
// Description:
|
sl@0
|
14 |
// EPOC32 version of crt0.c for C programs which always want multi-threaded support
|
sl@0
|
15 |
//
|
sl@0
|
16 |
//
|
sl@0
|
17 |
|
sl@0
|
18 |
#include <e32std.h>
|
sl@0
|
19 |
#include <e32base.h>
|
sl@0
|
20 |
#include <estlib.h> // for SpawnPosixServerThread()
|
sl@0
|
21 |
#include <stdlib.h>
|
sl@0
|
22 |
|
sl@0
|
23 |
#ifdef __ARMCC__
|
sl@0
|
24 |
__asm int CallMain(int argc, char *argv[], char *envp[])
|
sl@0
|
25 |
{
|
sl@0
|
26 |
import main
|
sl@0
|
27 |
code32
|
sl@0
|
28 |
b main
|
sl@0
|
29 |
}
|
sl@0
|
30 |
#define CALLMAIN(argc, argv, envp) CallMain(argc, argv, envp)
|
sl@0
|
31 |
#else
|
sl@0
|
32 |
extern "C" int main (int argc, char *argv[], char *envp[]);
|
sl@0
|
33 |
#define CALLMAIN(argc, argv, envp) main(argc, argv, envp)
|
sl@0
|
34 |
#endif
|
sl@0
|
35 |
|
sl@0
|
36 |
GLDEF_C TInt E32Main()
|
sl@0
|
37 |
{
|
sl@0
|
38 |
CTrapCleanup::New();
|
sl@0
|
39 |
|
sl@0
|
40 |
SpawnPosixServerThread(); // arrange for multi-threaded operation
|
sl@0
|
41 |
|
sl@0
|
42 |
int argc=0;
|
sl@0
|
43 |
char ** argv=0;
|
sl@0
|
44 |
char ** envp=0;
|
sl@0
|
45 |
|
sl@0
|
46 |
|
sl@0
|
47 |
__crt0(argc,argv,envp); // get args & environment from somewhere
|
sl@0
|
48 |
|
sl@0
|
49 |
int ret=CALLMAIN(argc, argv, envp); // go
|
sl@0
|
50 |
|
sl@0
|
51 |
// no need to explicitly delete the cleanup stack here as all memory used by
|
sl@0
|
52 |
// the process will be released by RProcess::Terminate(), called from inside exit().
|
sl@0
|
53 |
|
sl@0
|
54 |
exit(ret); // finish with atexit processing
|
sl@0
|
55 |
|
sl@0
|
56 |
return(KErrNone);
|
sl@0
|
57 |
}
|
sl@0
|
58 |
|
sl@0
|
59 |
|
sl@0
|
60 |
#if defined __GCC32__ && !defined __X86GCC__
|
sl@0
|
61 |
|
sl@0
|
62 |
/* stub function inserted into main() by GCC */
|
sl@0
|
63 |
extern "C" void __gccmain (void) {}
|
sl@0
|
64 |
|
sl@0
|
65 |
/* Default GCC entrypoint */
|
sl@0
|
66 |
extern "C" TInt _mainCRTStartup (void)
|
sl@0
|
67 |
{
|
sl@0
|
68 |
extern TInt _E32Startup();
|
sl@0
|
69 |
return _E32Startup();
|
sl@0
|
70 |
}
|
sl@0
|
71 |
|
sl@0
|
72 |
#endif /* __GCC32__ */
|
sl@0
|
73 |
|
sl@0
|
74 |
// X86GCC uses def files derived from EABI
|
sl@0
|
75 |
#if (defined (__EABI__)) || (defined (__X86GCC__))
|
sl@0
|
76 |
|
sl@0
|
77 |
// standard entrypoint for C runtime, expected by some linkers
|
sl@0
|
78 |
// Symbian OS does not currently use this function
|
sl@0
|
79 |
extern "C" void __main() {}
|
sl@0
|
80 |
#endif
|