mirror of
https://gitlab.com/embeddable-common-lisp/ecl.git
synced 2025-12-06 02:40:26 -08:00
don't forget to initialize C stack limits if threads are disabled
This was broken after the recent refactor of the initialization code.
This commit is contained in:
parent
9457813343
commit
af89c4a972
1 changed files with 2 additions and 0 deletions
|
|
@ -195,6 +195,8 @@ ecl_init_first_env(cl_env_ptr env)
|
|||
env->default_sigmask = cl_core.default_sigmask;
|
||||
#ifdef ECL_THREADS
|
||||
init_threads();
|
||||
#else
|
||||
ecl_cs_init(env);
|
||||
#endif
|
||||
init_env_mp(env);
|
||||
init_env_int(env);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue