1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-20 11:40:18 +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
* 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
start_stack (base);
scm_init_gsubr ();
scm_init_thread_procs (); /* Requires gsubrs */
scm_init_procprop ();
scm_init_environments ();
scm_init_feature ();