diff options
author | Marius Vollmer <mvo@zagadka.de> | 2002-11-03 22:09:20 +0000 |
---|---|---|
committer | Marius Vollmer <mvo@zagadka.de> | 2002-11-03 22:09:20 +0000 |
commit | 3d7f708f21b109277018e776ec3754975696e390 (patch) | |
tree | 7375110d778d41e84ca356226f7a85768804f7eb /libguile/inline.h | |
parent | 5cbed2d017e940d5ee2e625fe12d66278ae6cfb9 (diff) | |
download | guile-3d7f708f21b109277018e776ec3754975696e390.tar.gz |
* __scm.h (USE_THREADS, GUILE_ISELECT): Define when
SCM_DEBUG_DEPRECATED. Removed their use thru-out Guile.
Diffstat (limited to 'libguile/inline.h')
-rw-r--r-- | libguile/inline.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/libguile/inline.h b/libguile/inline.h index 1b919cf07..419c9f0bc 100644 --- a/libguile/inline.h +++ b/libguile/inline.h @@ -136,7 +136,6 @@ scm_cell (scm_t_bits car, scm_t_bits cdr) SCM_GC_SET_CELL_WORD (z, 1, cdr); SCM_GC_SET_CELL_WORD (z, 0, car); -#ifdef USE_THREADS #if !defined(USE_COOP_THREADS) && !defined(USE_NULL_THREADS) && !defined(USE_COPT_THREADS) /* When we are using preemtive threads, we might need to make sure that the initial values for the slots are protected until @@ -145,7 +144,6 @@ scm_cell (scm_t_bits car, scm_t_bits cdr) #error review me scm_remember_upto_here_1 (SCM_PACK (cdr)); #endif -#endif #if (SCM_DEBUG_CELL_ACCESSES == 1) @@ -187,7 +185,6 @@ scm_double_cell (scm_t_bits car, scm_t_bits cbr, SCM_GC_SET_CELL_WORD (z, 3, cdr); SCM_GC_SET_CELL_WORD (z, 0, car); -#ifdef USE_THREADS #if !defined(USE_COOP_THREADS) && !defined(USE_NULL_THREADS) && !defined(USE_COPT_THREADS) /* When we are using non-cooperating threads, we might need to make sure that the initial values for the slots are protected until @@ -196,7 +193,6 @@ scm_double_cell (scm_t_bits car, scm_t_bits cbr, #error review me scm_remember_upto_here_3 (SCM_PACK (cbr), SCM_PACK (ccr), SCM_PACK (cdr)); #endif -#endif #if (SCM_DEBUG_CELL_ACCESSES == 1) |