* threads.h: Include "coop-pthreads.h" when requested.
[bpt/guile.git] / libguile / init.c
CommitLineData
56e55ac7 1/* Copyright (C) 1995,1996,1997,1998,1999,2000,2001 Free Software Foundation, Inc.
0f2d19dd
JB
2 *
3 * This program is free software; you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation; either version 2, or (at your option)
6 * any later version.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this software; see the file COPYING. If not, write to
82892bed
JB
15 * the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
16 * Boston, MA 02111-1307 USA
0f2d19dd
JB
17 *
18 * As a special exception, the Free Software Foundation gives permission
19 * for additional uses of the text contained in its release of GUILE.
20 *
21 * The exception is that, if you link the GUILE library with other files
22 * to produce an executable, this does not by itself cause the
23 * resulting executable to be covered by the GNU General Public License.
24 * Your use of that executable is in no way restricted on account of
25 * linking the GUILE library code into it.
26 *
27 * This exception does not however invalidate any other reasons why
28 * the executable file might be covered by the GNU General Public License.
29 *
30 * This exception applies only to the code released by the
31 * Free Software Foundation under the name GUILE. If you copy
32 * code from other Free Software Foundation releases into a copy of
33 * GUILE, as the General Public License permits, the exception does
34 * not apply to the code that you add in this way. To avoid misleading
35 * anyone as to the status of such modified files, you must delete
36 * this exception notice from them.
37 *
38 * If you write modifications of your own for GUILE, it is your choice
39 * whether to permit this exception to apply to your modifications.
82892bed 40 * If you do not wish that, delete this exception notice. */
1bbd0b84 41
1bbd0b84 42
0f2d19dd 43\f
bdca1083
JB
44/* Include the headers for just about everything.
45 We call all their initialization functions. */
0f2d19dd
JB
46
47#include <stdio.h>
0a48b624
MV
48#include <sys/stat.h>
49#include <fcntl.h>
50
a0599745 51#include "libguile/_scm.h"
0f2d19dd 52
20e6290e 53/* Everybody has an init function. */
a0599745
MD
54#include "libguile/alist.h"
55#include "libguile/arbiters.h"
56#include "libguile/async.h"
57#include "libguile/backtrace.h"
58#include "libguile/boolean.h"
59#include "libguile/chars.h"
60#include "libguile/continuations.h"
20e6290e 61#ifdef DEBUG_EXTENSIONS
a0599745 62#include "libguile/debug.h"
20e6290e 63#endif
6b815f1a 64#ifdef GUILE_DEBUG_MALLOC
a0599745 65#include "libguile/debug-malloc.h"
6b815f1a 66#endif
388bebbc 67#include "libguile/deprecation.h"
a0599745
MD
68#include "libguile/dynl.h"
69#include "libguile/dynwind.h"
5d3e2388 70#include "libguile/environments.h"
a0599745
MD
71#include "libguile/eq.h"
72#include "libguile/error.h"
73#include "libguile/eval.h"
74#include "libguile/evalext.h"
75#include "libguile/feature.h"
76#include "libguile/filesys.h"
77#include "libguile/fluids.h"
78#include "libguile/fports.h"
79#include "libguile/gc.h"
80#include "libguile/gdbint.h"
508ded1c 81#include "libguile/goops.h"
a0599745
MD
82#include "libguile/gsubr.h"
83#include "libguile/hash.h"
84#include "libguile/hashtab.h"
2b9c8690 85#include "libguile/hooks.h"
44e8413c 86#ifdef GUILE_ISELECT
a0599745 87#include "libguile/iselect.h"
44e8413c 88#endif
a0599745
MD
89#include "libguile/ioext.h"
90#include "libguile/keywords.h"
91#include "libguile/lang.h"
92#include "libguile/list.h"
93#include "libguile/load.h"
94#include "libguile/macros.h"
95#include "libguile/mallocs.h"
96#include "libguile/modules.h"
97#include "libguile/net_db.h"
98#include "libguile/numbers.h"
99#include "libguile/objects.h"
100#include "libguile/objprop.h"
101#include "libguile/options.h"
102#include "libguile/pairs.h"
103#include "libguile/ports.h"
104#include "libguile/posix.h"
f255378e 105#ifdef HAVE_REGCOMP
a0599745 106#include "libguile/regex-posix.h"
f255378e 107#endif
a0599745
MD
108#include "libguile/print.h"
109#include "libguile/procprop.h"
110#include "libguile/procs.h"
b4255788 111#include "libguile/properties.h"
a0599745
MD
112#include "libguile/ramap.h"
113#include "libguile/random.h"
fd937ecb 114#include "libguile/rdelim.h"
a0599745 115#include "libguile/read.h"
b0e5fd8c 116#include "libguile/rw.h"
a0599745
MD
117#include "libguile/scmsigs.h"
118#include "libguile/script.h"
119#include "libguile/simpos.h"
120#include "libguile/smob.h"
121#include "libguile/socket.h"
122#include "libguile/sort.h"
123#include "libguile/srcprop.h"
124#include "libguile/stackchk.h"
125#include "libguile/stacks.h"
126#include "libguile/stime.h"
127#include "libguile/strings.h"
128#include "libguile/strop.h"
129#include "libguile/strorder.h"
130#include "libguile/strports.h"
131#include "libguile/struct.h"
132#include "libguile/symbols.h"
a0599745
MD
133#include "libguile/throw.h"
134#include "libguile/unif.h"
ce212434 135#include "libguile/values.h"
a0599745
MD
136#include "libguile/variable.h"
137#include "libguile/vectors.h"
138#include "libguile/version.h"
139#include "libguile/vports.h"
140#include "libguile/weaks.h"
141#include "libguile/guardians.h"
1be6b49c 142#include "libguile/extensions.h"
20e6290e 143
a0599745 144#include "libguile/init.h"
a8be22fe 145
95b88819
GH
146#ifdef HAVE_STRING_H
147#include <string.h>
148#endif
149#ifdef HAVE_UNISTD_H
150#include <unistd.h>
151#endif
0f2d19dd 152\f
bdca1083 153/* Setting up the stack. */
0f2d19dd 154
1bbd0b84
GB
155static void
156restart_stack (void *base)
157{
158 scm_dynwinds = SCM_EOL;
159 SCM_DYNENV (scm_rootcont) = SCM_EOL;
160 SCM_THROW_VALUE (scm_rootcont) = SCM_EOL;
161#ifdef DEBUG_EXTENSIONS
162 SCM_DFRAME (scm_rootcont) = scm_last_debug_frame = 0;
163#endif
164 SCM_BASE (scm_rootcont) = base;
1bbd0b84 165}
1cdaaafb
JB
166
167static void
1bbd0b84 168start_stack (void *base)
0f2d19dd 169{
9ef3d0ee 170 SCM root;
0f2d19dd 171
9ef3d0ee
MD
172 root = scm_permanent_object (scm_make_root (SCM_UNDEFINED));
173 scm_set_root (SCM_ROOT_STATE (root));
0f2d19dd
JB
174 scm_stack_base = base;
175
0f2d19dd
JB
176 scm_exitval = SCM_BOOL_F; /* vestigial */
177
ee3ea81d
MV
178 scm_root->fluids = scm_make_initial_fluids ();
179
0f2d19dd
JB
180 /* Create an object to hold the root continuation.
181 */
5f144b10 182 {
4c9419ac 183 scm_t_contregs *contregs = scm_gc_malloc (sizeof (scm_t_contregs),
5f144b10
GH
184 "continuation");
185 contregs->num_stack_items = 0;
186 contregs->seq = 0;
187 SCM_NEWSMOB (scm_rootcont, scm_tc16_continuation, contregs);
188 }
0f2d19dd 189
1cdaaafb
JB
190 /* The remainder of stack initialization is factored out to another
191 * function so that if this stack is ever exitted, it can be
a4156763
MD
192 * re-entered using restart_stack. */
193 restart_stack (base);
0f2d19dd
JB
194}
195
196
0f2d19dd
JB
197#if 0
198static char remsg[] = "remove\n#define ", addmsg[] = "add\n#define ";
199
1cc91f1b 200
0f2d19dd 201static void
34d19ef6 202fixconfig (char *s1, char *s2, int s)
0f2d19dd
JB
203{
204 fputs (s1, stderr);
205 fputs (s2, stderr);
206 fputs ("\nin ", stderr);
207 fputs (s ? "setjump" : "scmfig", stderr);
208 fputs (".h and recompile scm\n", stderr);
209 exit (1);
210}
211
212
0f2d19dd 213static void
1bbd0b84 214check_config (void)
0f2d19dd 215{
1be6b49c 216 size_t j;
0f2d19dd
JB
217
218 j = HEAP_SEG_SIZE;
219 if (HEAP_SEG_SIZE != j)
220 fixconfig ("reduce", "size of HEAP_SEG_SIZE", 0);
221
0f2d19dd
JB
222#ifdef SCM_BIGDIG
223 if (2 * SCM_BITSPERDIG / SCM_CHAR_BIT > sizeof (long))
224 fixconfig (remsg, "SCM_BIGDIG", 0);
225#ifndef SCM_DIGSTOOBIG
226 if (SCM_DIGSPERLONG * sizeof (SCM_BIGDIG) > sizeof (long))
227 fixconfig (addmsg, "SCM_DIGSTOOBIG", 0);
228#endif
229#endif
230
231#ifdef SCM_STACK_GROWS_UP
232 if (((SCM_STACKITEM *) & j - stack_start_ptr) < 0)
233 fixconfig (remsg, "SCM_STACK_GROWS_UP", 1);
234#else
235 if ((stack_start_ptr - (SCM_STACKITEM *) & j) < 0)
236 fixconfig (addmsg, "SCM_STACK_GROWS_UP", 1);
237#endif
238}
239#endif
240
241
242\f
1cdaaafb
JB
243/* initializing standard and current I/O ports */
244
19b27fa2
GH
245typedef struct
246{
247 int fdes;
248 char *mode;
249 char *name;
250} stream_body_data;
251
252/* proc to be called in scope of exception handler stream_handler. */
ee149d03 253static SCM
19b27fa2 254stream_body (void *data)
ee149d03 255{
19b27fa2
GH
256 stream_body_data *body_data = (stream_body_data *) data;
257 SCM port = scm_fdes_to_port (body_data->fdes, body_data->mode,
258 scm_makfrom0str (body_data->name));
0a48b624 259
19b27fa2
GH
260 SCM_REVEALED (port) = 1;
261 return port;
262}
263
264/* exception handler for stream_body. */
265static SCM
e81d98ec
DH
266stream_handler (void *data SCM_UNUSED,
267 SCM tag SCM_UNUSED,
268 SCM throw_args SCM_UNUSED)
19b27fa2
GH
269{
270 return SCM_BOOL_F;
271}
272
273/* Convert a file descriptor to a port, using scm_fdes_to_port.
274 - NAME is a C string, not a Guile string
275 - set the revealed count for FILE's file descriptor to 1, so
276 that fdes won't be closed when the port object is GC'd.
277 - catch exceptions: allow Guile to be able to start up even
70df8af6
GH
278 if it has been handed bogus stdin/stdout/stderr. replace the
279 bad ports with void ports. */
19b27fa2
GH
280static SCM
281scm_standard_stream_to_port (int fdes, char *mode, char *name)
282{
283 SCM port;
284 stream_body_data body_data;
285
286 body_data.fdes = fdes;
287 body_data.mode = mode;
288 body_data.name = name;
289 port = scm_internal_catch (SCM_BOOL_T, stream_body, &body_data,
290 stream_handler, NULL);
291 if (SCM_FALSEP (port))
70df8af6 292 port = scm_void_port (mode);
19b27fa2 293 return port;
ee149d03
JB
294}
295
296/* Create standard ports from stdin, stdout, and stderr. */
1cdaaafb
JB
297static void
298scm_init_standard_ports ()
299{
94754080
JB
300 /* From the SCSH manual:
301
302 It can be useful to turn I/O buffering off in some cases, for
303 example when an I/O stream is to be shared by multiple
304 subprocesses. For this reason, scsh allocates an unbuffered port
305 for file descriptor 0 at start-up time.
306
307 Because shells frequently share stdin with subprocesses, if the
308 shell does buffered reads, it might ``steal'' input intended for
309 a subprocess. For this reason, all shells, including sh, csh,
310 and scsh, read stdin unbuffered. Applications that can tolerate
311 buffered input on stdin can reset \ex{(current-input-port)} to
312 block buffering for higher performance. */
ee149d03 313
5e423a39 314 scm_cur_inp
ee149d03
JB
315 = scm_standard_stream_to_port (0,
316 isatty (0) ? "r0" : "r",
1cdaaafb 317 "standard input");
5e423a39 318 scm_cur_outp = scm_standard_stream_to_port (1,
720e8692 319 isatty (1) ? "w0" : "w",
ee149d03 320 "standard output");
5e423a39 321 scm_cur_errp = scm_standard_stream_to_port (2,
ee149d03
JB
322 isatty (2) ? "w0" : "w",
323 "standard error");
1cdaaafb 324
1a64191e 325 scm_cur_loadp = SCM_BOOL_F;
1cdaaafb
JB
326}
327
328
329\f
bdca1083
JB
330/* Loading the startup Scheme files. */
331
332/* The boot code "ice-9/boot-9" is only loaded by scm_boot_guile when
333 this is false. The unexec code uses this, to keep ice_9 from being
334 loaded into dumped guile executables. */
335int scm_ice_9_already_loaded = 0;
336
337void
338scm_load_startup_files ()
339{
340 /* We want a path only containing directories from GUILE_LOAD_PATH,
341 SCM_SITE_DIR and SCM_LIBRARY_DIR when searching for the site init
342 file, so we do this before loading Ice-9. */
343 SCM init_path = scm_sys_search_load_path (scm_makfrom0str ("init.scm"));
344
345 /* Load Ice-9. */
346 if (!scm_ice_9_already_loaded)
b505860d
MD
347 {
348 scm_primitive_load_path (scm_makfrom0str ("ice-9/boot-9.scm"));
bdca1083 349
b505860d
MD
350 /* Load the init.scm file. */
351 if (SCM_NFALSEP (init_path))
352 scm_primitive_load (init_path);
b505860d 353 }
bdca1083
JB
354}
355
bdca1083
JB
356\f
357/* The main init code. */
358
0f2d19dd
JB
359#ifdef _UNICOS
360typedef int setjmp_type;
361#else
362typedef long setjmp_type;
363#endif
364
816a6f06
JB
365/* All the data needed to invoke the main function. */
366struct main_func_closure
367{
368 /* the function to call */
1bbd0b84 369 void (*main_func)(void *closure, int argc, char **argv);
816a6f06
JB
370 void *closure; /* dummy data to pass it */
371 int argc;
372 char **argv; /* the argument list it should receive */
373};
374
375
7ad3a978
MV
376static void scm_init_guile_1 (SCM_STACKITEM *base);
377static void scm_boot_guile_1 (SCM_STACKITEM *base,
378 struct main_func_closure *closure);
1bbd0b84 379static SCM invoke_main_func(void *body_data);
1cdaaafb
JB
380
381
382/* Fire up the Guile Scheme interpreter.
383
384 Call MAIN_FUNC, passing it CLOSURE, ARGC, and ARGV. MAIN_FUNC
385 should do all the work of the program (initializing other packages,
386 reading user input, etc.) before returning. When MAIN_FUNC
387 returns, call exit (0); this function never returns. If you want
388 some other exit value, MAIN_FUNC may call exit itself.
0f2d19dd 389
1cdaaafb
JB
390 scm_boot_guile arranges for program-arguments to return the strings
391 given by ARGC and ARGV. If MAIN_FUNC modifies ARGC/ARGV, should
392 call scm_set_program_arguments with the final list, so Scheme code
393 will know which arguments have been processed.
c275ddc7 394
816a6f06
JB
395 scm_boot_guile establishes a catch-all catch handler which prints
396 an error message and exits the process. This means that Guile
397 exits in a coherent way when system errors occur and the user isn't
398 prepared to handle it. If the user doesn't like this behavior,
399 they can establish their own universal catcher to shadow this one.
400
1cdaaafb
JB
401 Why must the caller do all the real work from MAIN_FUNC? The
402 garbage collector assumes that all local variables of type SCM will
403 be above scm_boot_guile's stack frame on the stack. If you try to
404 manipulate SCM values after this function returns, it's the luck of
405 the draw whether the GC will be able to find the objects you
406 allocate. So, scm_boot_guile function exits, rather than
407 returning, to discourage people from making that mistake. */
408
409
410void
6e8d25a6 411scm_boot_guile (int argc, char ** argv, void (*main_func) (), void *closure)
c275ddc7 412{
1cdaaafb
JB
413 /* The garbage collector uses the address of this variable as one
414 end of the stack, and the address of one of its own local
415 variables as the other end. */
c275ddc7 416 SCM_STACKITEM dummy;
816a6f06 417 struct main_func_closure c;
c275ddc7 418
816a6f06
JB
419 c.main_func = main_func;
420 c.closure = closure;
421 c.argc = argc;
422 c.argv = argv;
423
1595aa56 424 scm_boot_guile_1 (&dummy, &c);
c275ddc7
JB
425}
426
7ad3a978
MV
427void
428scm_init_guile ()
429{
430 scm_init_guile_1 ((SCM_STACKITEM *)scm_get_stack_base ());
431}
1cdaaafb 432
bf1b9494
MD
433int scm_initialized_p = 0;
434
1cdaaafb 435static void
7ad3a978 436scm_init_guile_1 (SCM_STACKITEM *base)
0f2d19dd 437{
7ad3a978
MV
438 if (scm_initialized_p)
439 return;
0f2d19dd 440
7ad3a978
MV
441 if (base == NULL)
442 {
443 fprintf (stderr, "cannot determine stack base!\n");
444 abort ();
445 }
0f2d19dd
JB
446
447 scm_ints_disabled = 1;
448 scm_block_gc = 1;
449
7ad3a978
MV
450 scm_ports_prehistory ();
451 scm_smob_prehistory ();
452 scm_tables_prehistory ();
6b815f1a 453#ifdef GUILE_DEBUG_MALLOC
7ad3a978 454 scm_debug_malloc_prehistory ();
6b815f1a 455#endif
c8a1bdc4
HWN
456 if (scm_init_storage ()) /* requires smob_prehistory */
457 abort ();
458
de42a0ee
DH
459 scm_struct_prehistory (); /* requires storage */
460 scm_symbols_prehistory (); /* requires storage */
461 scm_weaks_prehistory (); /* requires storage */
7ad3a978 462 scm_init_subr_table ();
de42a0ee 463 scm_environments_prehistory (); /* requires storage */
86d31dfe
MV
464 scm_modules_prehistory (); /* requires storage */
465 scm_init_variable (); /* all bindings need variables */
5f144b10 466 scm_init_continuations ();
de42a0ee 467 scm_init_root (); /* requires continuations */
9ef3d0ee 468#ifdef USE_THREADS
7ad3a978 469 scm_init_threads (base);
9ef3d0ee 470#endif
7ad3a978
MV
471 start_stack (base);
472 scm_init_gsubr ();
85db4a2c 473 scm_init_procprop ();
7ad3a978
MV
474 scm_init_environments ();
475 scm_init_feature ();
476 scm_init_alist ();
477 scm_init_arbiters ();
478 scm_init_async ();
479 scm_init_boolean ();
480 scm_init_chars ();
6b815f1a 481#ifdef GUILE_DEBUG_MALLOC
7ad3a978 482 scm_init_debug_malloc ();
6b815f1a 483#endif
7ad3a978
MV
484 scm_init_dynwind ();
485 scm_init_eq ();
486 scm_init_error ();
487 scm_init_fluids ();
488 scm_init_backtrace (); /* Requires fluids */
489 scm_init_fports ();
a98bddfd
DH
490 scm_init_strports ();
491 scm_init_gdbint (); /* Requires strports */
7ad3a978
MV
492 scm_init_hash ();
493 scm_init_hashtab ();
388bebbc 494 scm_init_deprecation (); /* Requires hashtabs */
7ad3a978
MV
495 scm_init_objprop ();
496 scm_init_properties ();
56e55ac7 497 scm_init_hooks (); /* Requires smob_prehistory */
7ad3a978 498 scm_init_gc (); /* Requires hooks, async */
44e8413c 499#ifdef GUILE_ISELECT
7ad3a978 500 scm_init_iselect ();
44e8413c 501#endif
7ad3a978
MV
502 scm_init_ioext ();
503 scm_init_keywords ();
504 scm_init_list ();
505 scm_init_macros ();
506 scm_init_mallocs ();
507 scm_init_modules ();
508 scm_init_numbers ();
509 scm_init_options ();
510 scm_init_pairs ();
511 scm_init_ports ();
52cfc69b 512#ifdef HAVE_POSIX
7ad3a978
MV
513 scm_init_filesys ();
514 scm_init_posix ();
52cfc69b 515#endif
f255378e 516#ifdef HAVE_REGCOMP
7ad3a978 517 scm_init_regex_posix ();
f255378e 518#endif
7ad3a978 519 scm_init_procs ();
7ad3a978 520 scm_init_scmsigs ();
52cfc69b 521#ifdef HAVE_NETWORKING
7ad3a978
MV
522 scm_init_net_db ();
523 scm_init_socket ();
52cfc69b 524#endif
7ad3a978 525 scm_init_sort ();
4e1caa79 526#ifdef DEBUG_EXTENSIONS
7ad3a978 527 scm_init_srcprop ();
4e1caa79 528#endif
7ad3a978 529 scm_init_stackchk ();
7c33806a
DH
530 scm_init_strings ();
531 scm_init_struct (); /* Requires strings */
532 scm_init_stacks (); /* Requires strings, struct */
7ad3a978 533 scm_init_symbols ();
ce212434 534 scm_init_values (); /* Requires struct */
7c33806a 535 scm_init_load (); /* Requires strings */
7ad3a978 536 scm_init_objects (); /* Requires struct */
7c33806a 537 scm_init_print (); /* Requires strings, struct */
7ad3a978
MV
538 scm_init_read ();
539 scm_init_stime ();
7ad3a978
MV
540 scm_init_strorder ();
541 scm_init_strop ();
542 scm_init_throw ();
7ad3a978
MV
543 scm_init_vectors ();
544 scm_init_version ();
545 scm_init_weaks ();
56495472 546 scm_init_guardians ();
7ad3a978
MV
547 scm_init_vports ();
548 scm_init_eval ();
549 scm_init_evalext ();
0e44fcca 550#ifdef DEBUG_EXTENSIONS
7ad3a978 551 scm_init_debug (); /* Requires macro smobs */
0e44fcca 552#endif
7ad3a978 553 scm_init_random ();
afe5177e 554#ifdef HAVE_ARRAYS
7ad3a978
MV
555 scm_init_ramap ();
556 scm_init_unif ();
afe5177e 557#endif
7ad3a978
MV
558 scm_init_simpos ();
559 scm_init_load_path ();
a98bddfd 560 scm_init_standard_ports (); /* Requires fports */
4f6f9ae3 561#ifdef DYNAMIC_LINKING
7ad3a978 562 scm_init_dynamic_linking ();
4f6f9ae3 563#endif
c96d76b8 564#ifdef SCM_ENABLE_ELISP
7ad3a978 565 scm_init_lang ();
c96d76b8 566#endif /* SCM_ENABLE_ELISP */
7ad3a978 567 scm_init_script ();
508ded1c 568
e2d085f3 569 scm_init_goops ();
acfee8e1 570
7ad3a978 571 scm_initialized_p = 1;
0f2d19dd
JB
572
573 scm_block_gc = 0; /* permit the gc to run */
574 /* ints still disabled */
575
1cdaaafb
JB
576#ifdef STACK_CHECKING
577 scm_stack_checking_enabled_p = SCM_STACK_CHECKING_P;
578#endif
0f2d19dd 579
fd937ecb 580 scm_init_rdelim ();
b0e5fd8c 581 scm_init_rw ();
08045107 582 scm_init_extensions ();
e2d085f3
MV
583
584 scm_load_startup_files ();
7ad3a978
MV
585}
586
587/* Record here whether SCM_BOOT_GUILE_1 has already been called. This
588 variable is now here and not inside SCM_BOOT_GUILE_1 so that one
589 can tweak it. This is necessary for unexec to work. (Hey, "1-live"
590 is the name of a local radiostation...) */
591
592int scm_boot_guile_1_live = 0;
593
594static void
595scm_boot_guile_1 (SCM_STACKITEM *base, struct main_func_closure *closure)
596{
597 scm_init_guile_1 (base);
598
599 /* This function is not re-entrant. */
600 if (scm_boot_guile_1_live)
601 abort ();
602
603 scm_boot_guile_1_live = 1;
604
605 scm_set_program_arguments (closure->argc, closure->argv, 0);
606 invoke_main_func (closure);
0f2d19dd 607
1cdaaafb 608 scm_restore_signals ();
0f2d19dd 609
1cdaaafb
JB
610 /* This tick gives any pending
611 * asyncs a chance to run. This must be done after
612 * the call to scm_restore_signals.
613 */
614 SCM_ASYNC_TICK;
615
616 /* If the caller doesn't want this, they should return from
617 main_func themselves. */
618 exit (0);
0f2d19dd 619}
816a6f06 620
816a6f06 621static SCM
6e8d25a6 622invoke_main_func (void *body_data)
816a6f06
JB
623{
624 struct main_func_closure *closure = (struct main_func_closure *) body_data;
625
626 (*closure->main_func) (closure->closure, closure->argc, closure->argv);
627
628 /* never reached */
629 return SCM_UNDEFINED;
630}
89e00824
ML
631
632/*
633 Local Variables:
634 c-file-style: "gnu"
635 End:
636*/