diff options
author | Ludovic Courtès <ludo@gnu.org> | 2008-09-10 23:33:59 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2008-09-10 23:33:59 +0200 |
commit | b359b36a63844f6fb1e18a070528bcc4fb45c16d (patch) | |
tree | 13a8ad9ed4ef526b0ee2041a4b62a2fd3e136f9b | |
parent | 7f2a6c387c0610b774c5b90ab080e69845f76dfc (diff) | |
download | guile-b359b36a63844f6fb1e18a070528bcc4fb45c16d.tar.gz |
Fix broken GC and threads merge.
* libguile/private-gc.h (scm_i_tag_name): New declaration.
* libguile/threads.c: Include <config.h>.
-rw-r--r-- | libguile/private-gc.h | 3 | ||||
-rw-r--r-- | libguile/threads.c | 4 |
2 files changed, 7 insertions, 0 deletions
diff --git a/libguile/private-gc.h b/libguile/private-gc.h index 00bef9d2e..b38addebd 100644 --- a/libguile/private-gc.h +++ b/libguile/private-gc.h @@ -112,6 +112,9 @@ void scm_mark_all (void); extern long int scm_i_deprecated_memory_return; extern long int scm_i_find_heap_calls; +SCM_INTERNAL char const *scm_i_tag_name (scm_t_bits tag); /* MOVEME */ + + /* global init funcs. */ diff --git a/libguile/threads.c b/libguile/threads.c index 1ccfdca97..8ffefae2e 100644 --- a/libguile/threads.c +++ b/libguile/threads.c @@ -18,6 +18,10 @@ +#if HAVE_CONFIG_H +# include <config.h> +#endif + #include "libguile/boehm-gc.h" #include "libguile/_scm.h" |