mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-06-18 01:30:27 +02:00
optional default-value arg to make-fluid
* libguile/fluids.c (grow_dynamic_state, new_fluid): Arrange for the default value in the dynamic-state vector to be SCM_UNDEFINED instead of SCM_BOOL_F. If the value in the dynamic-state is #f, default to a value attached to the fluid instead. This allows useful default values. (scm_make_fluid_with_default): New function, allows the user to specify a default value for the fluid. Defaults to #f. Bound to `make-fluid' on the Scheme side. (scm_make_unbound_fluid): Use SCM_UNDEFINED as the default in all threads. (scm_fluid_unset_x): Also unset the default value. Not sure if this is the right thing. (fluid_ref): Update to the new default-value strategy. * libguile/threads.c (scm_i_reset_fluid): Reset to SCM_UNDEFINED. * libguile/threads.h: Remove extra arg to scm_i_reset_fluid. * libguile/vm-i-system.c (fluid-ref): Update to new default-value strategy. * module/ice-9/vlist.scm (block-growth-factor): Default to 2 in all threads. Fixes http://debbugs.gnu.org/10093.
This commit is contained in:
parent
adf8616fab
commit
aafb4ed724
6 changed files with 37 additions and 23 deletions
|
@ -478,7 +478,7 @@ static SCM scm_i_default_dynamic_state;
|
|||
|
||||
/* Run when a fluid is collected. */
|
||||
void
|
||||
scm_i_reset_fluid (size_t n, SCM val)
|
||||
scm_i_reset_fluid (size_t n)
|
||||
{
|
||||
scm_i_thread *t;
|
||||
|
||||
|
@ -489,7 +489,7 @@ scm_i_reset_fluid (size_t n, SCM val)
|
|||
SCM v = SCM_I_DYNAMIC_STATE_FLUIDS (t->dynamic_state);
|
||||
|
||||
if (n < SCM_SIMPLE_VECTOR_LENGTH (v))
|
||||
SCM_SIMPLE_VECTOR_SET (v, n, val);
|
||||
SCM_SIMPLE_VECTOR_SET (v, n, SCM_UNDEFINED);
|
||||
}
|
||||
scm_i_pthread_mutex_unlock (&thread_admin_mutex);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue