1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-22 04:30:19 +02:00

(scm_init_guile_1): Call scm_init_thread_procs. This is because

threads need to be initialized before the stack, but gsubrs such as
scm_timed_condition_variable_wait can only be created later.
This commit is contained in:
Marius Vollmer 2002-10-27 20:12:51 +00:00
parent 5f05c406d2
commit e30a0d8565

View file

@ -1,4 +1,4 @@
/* Copyright (C) 1995,1996,1997,1998,1999,2000,2001 Free Software Foundation, Inc. /* Copyright (C) 1995,1996,1997,1998,1999,2000,2001, 2002 Free Software Foundation, Inc.
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by
@ -470,6 +470,7 @@ scm_init_guile_1 (SCM_STACKITEM *base)
#endif #endif
start_stack (base); start_stack (base);
scm_init_gsubr (); scm_init_gsubr ();
scm_init_thread_procs (); /* Requires gsubrs */
scm_init_procprop (); scm_init_procprop ();
scm_init_environments (); scm_init_environments ();
scm_init_feature (); scm_init_feature ();