This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
I32 may not be big enough for string insert length
[perl5.git] / miniperlmain.c
... / ...
CommitLineData
1/* miniperlmain.c
2 *
3 * Copyright (C) 1994, 1995, 1996, 1997, 1999, 2000, 2001, 2002, 2003,
4 * 2004, 2005, 2006, 2007, by Larry Wall and others
5 *
6 * You may distribute under the terms of either the GNU General Public
7 * License or the Artistic License, as specified in the README file.
8 *
9 */
10
11/*
12 * The Road goes ever on and on
13 * Down from the door where it began.
14 *
15 * [Bilbo on p.35 of _The Lord of the Rings_, I/i: "A Long-Expected Party"]
16 * [Frodo on p.73 of _The Lord of the Rings_, I/iii: "Three Is Company"]
17 */
18
19/* This file contains the main() function for the perl interpreter.
20 * Note that miniperlmain.c contains main() for the 'miniperl' binary,
21 * while perlmain.c contains main() for the 'perl' binary.
22 *
23 * Miniperl is like perl except that it does not support dynamic loading,
24 * and in fact is used to build the dynamic modules needed for the 'real'
25 * perl executable.
26 */
27
28#ifdef OEMVS
29#ifdef MYMALLOC
30/* sbrk is limited to first heap segment so make it big */
31#pragma runopts(HEAP(8M,500K,ANYWHERE,KEEP,8K,4K) STACK(,,ANY,) ALL31(ON))
32#else
33#pragma runopts(HEAP(2M,500K,ANYWHERE,KEEP,8K,4K) STACK(,,ANY,) ALL31(ON))
34#endif
35#endif
36
37
38#include "EXTERN.h"
39#define PERL_IN_MINIPERLMAIN_C
40#include "perl.h"
41
42static void xs_init (pTHX);
43static PerlInterpreter *my_perl;
44
45#if defined (atarist)
46/* The Atari operating system doesn't have a dynamic stack. The
47 stack size is determined from this value. */
48long _stksize = 64 * 1024;
49#endif
50
51#if defined(PERL_GLOBAL_STRUCT_PRIVATE)
52/* The static struct perl_vars* may seem counterproductive since the
53 * whole idea PERL_GLOBAL_STRUCT_PRIVATE was to avoid statics, but note
54 * that this static is not in the shared perl library, the globals PL_Vars
55 * and PL_VarsPtr will stay away. */
56static struct perl_vars* my_plvarsp;
57struct perl_vars* Perl_GetVarsPrivate(void) { return my_plvarsp; }
58#endif
59
60#ifdef NO_ENV_ARRAY_IN_MAIN
61extern char **environ;
62int
63main(int argc, char **argv)
64#else
65int
66main(int argc, char **argv, char **env)
67#endif
68{
69 dVAR;
70 int exitstatus, i;
71#ifdef PERL_GLOBAL_STRUCT
72 struct perl_vars *plvarsp = init_global_struct();
73# ifdef PERL_GLOBAL_STRUCT_PRIVATE
74 my_vars = my_plvarsp = plvarsp;
75# endif
76#endif /* PERL_GLOBAL_STRUCT */
77#ifndef NO_ENV_ARRAY_IN_MAIN
78 PERL_UNUSED_ARG(env);
79#endif
80#ifndef PERL_USE_SAFE_PUTENV
81 PL_use_safe_putenv = FALSE;
82#endif /* PERL_USE_SAFE_PUTENV */
83
84 /* if user wants control of gprof profiling off by default */
85 /* noop unless Configure is given -Accflags=-DPERL_GPROF_CONTROL */
86 PERL_GPROF_MONCONTROL(0);
87
88#ifdef NO_ENV_ARRAY_IN_MAIN
89 PERL_SYS_INIT3(&argc,&argv,&environ);
90#else
91 PERL_SYS_INIT3(&argc,&argv,&env);
92#endif
93
94#if defined(USE_ITHREADS)
95 /* XXX Ideally, this should really be happening in perl_alloc() or
96 * perl_construct() to keep libperl.a transparently fork()-safe.
97 * It is currently done here only because Apache/mod_perl have
98 * problems due to lack of a call to cancel pthread_atfork()
99 * handlers when shared objects that contain the handlers may
100 * be dlclose()d. This forces applications that embed perl to
101 * call PTHREAD_ATFORK() explicitly, but if and only if it hasn't
102 * been called at least once before in the current process.
103 * --GSAR 2001-07-20 */
104 PTHREAD_ATFORK(Perl_atfork_lock,
105 Perl_atfork_unlock,
106 Perl_atfork_unlock);
107#endif
108
109 if (!PL_do_undump) {
110 my_perl = perl_alloc();
111 if (!my_perl)
112 exit(1);
113 perl_construct(my_perl);
114 PL_perl_destruct_level = 0;
115 }
116 PL_exit_flags |= PERL_EXIT_DESTRUCT_END;
117 exitstatus = perl_parse(my_perl, xs_init, argc, argv, (char **)NULL);
118 if (!exitstatus)
119 perl_run(my_perl);
120
121#ifndef PERL_MICRO
122 /* Unregister our signal handler before destroying my_perl */
123 for (i = 0; PL_sig_name[i]; i++) {
124 if (rsignal_state(PL_sig_num[i]) == (Sighandler_t) PL_csighandlerp) {
125 rsignal(PL_sig_num[i], (Sighandler_t) SIG_DFL);
126 }
127 }
128#endif
129
130 exitstatus = perl_destruct(my_perl);
131
132 perl_free(my_perl);
133
134#if defined(USE_ENVIRON_ARRAY) && defined(PERL_TRACK_MEMPOOL) && !defined(NO_ENV_ARRAY_IN_MAIN)
135 /*
136 * The old environment may have been freed by perl_free()
137 * when PERL_TRACK_MEMPOOL is defined, but without having
138 * been restored by perl_destruct() before (this is only
139 * done if destruct_level > 0).
140 *
141 * It is important to have a valid environment for atexit()
142 * routines that are eventually called.
143 */
144 environ = env;
145#endif
146
147#ifdef PERL_GLOBAL_STRUCT
148 free_global_struct(plvarsp);
149#endif /* PERL_GLOBAL_STRUCT */
150
151 PERL_SYS_TERM();
152
153 exit(exitstatus);
154 return exitstatus;
155}
156
157/* Register any extra external extensions */
158
159/* Do not delete this line--writemain depends on it */
160
161static void
162xs_init(pTHX)
163{
164 PERL_UNUSED_CONTEXT;
165 dXSUB_SYS;
166}
167
168/*
169 * Local variables:
170 * c-indentation-style: bsd
171 * c-basic-offset: 4
172 * indent-tabs-mode: t
173 * End:
174 *
175 * ex: set ts=8 sts=4 sw=4 noet:
176 */