This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
\$escaping the $vars in !GROK!THIS! section is a good idea.
[perl5.git] / miniperlmain.c
1 /*
2  * "The Road goes ever on and on, down from the door where it began."
3  */
4
5 #ifdef OEMVS
6 #ifdef MYMALLOC
7 /* sbrk is limited to first heap segement so make it big */
8 #pragma runopts(HEAP(8M,500K,ANYWHERE,KEEP,8K,4K) STACK(,,ANY,) ALL31(ON))
9 #else
10 #pragma runopts(HEAP(2M,500K,ANYWHERE,KEEP,8K,4K) STACK(,,ANY,) ALL31(ON))
11 #endif
12 #endif
13
14
15 #include "EXTERN.h"
16 #define PERL_IN_MINIPERLMAIN_C
17 #include "perl.h"
18
19 static void xs_init (pTHX);
20 static PerlInterpreter *my_perl;
21
22 #if defined (__MINT__) || defined (atarist)
23 /* The Atari operating system doesn't have a dynamic stack.  The
24    stack size is determined from this value.  */
25 long _stksize = 64 * 1024;
26 #endif
27
28 int
29 main(int argc, char **argv, char **env)
30 {
31     int exitstatus;
32
33 #ifdef PERL_GLOBAL_STRUCT
34 #define PERLVAR(var,type) /**/
35 #define PERLVARA(var,type) /**/
36 #define PERLVARI(var,type,init) PL_Vars.var = init;
37 #define PERLVARIC(var,type,init) PL_Vars.var = init;
38 #include "perlvars.h"
39 #undef PERLVAR
40 #undef PERLVARA
41 #undef PERLVARI
42 #undef PERLVARIC
43 #endif
44
45     PERL_SYS_INIT3(&argc,&argv,&env);
46
47     if (!PL_do_undump) {
48         my_perl = perl_alloc();
49         if (!my_perl)
50             exit(1);
51         perl_construct(my_perl);
52         PL_perl_destruct_level = 0;
53     }
54
55     exitstatus = perl_parse(my_perl, xs_init, argc, argv, (char **)NULL);
56     if (!exitstatus) {
57         exitstatus = perl_run(my_perl);
58     }
59
60     perl_destruct(my_perl);
61     perl_free(my_perl);
62
63     PERL_SYS_TERM();
64
65     exit(exitstatus);
66     return exitstatus;
67 }
68
69 /* Register any extra external extensions */
70
71 /* Do not delete this line--writemain depends on it */
72
73 static void
74 xs_init(pTHX)
75 {
76     dXSUB_SYS;
77 }