diff options
author | Kevin Fletcher <kevinjohn.fletcher@gmail.com> | 2011-03-31 22:16:54 +0200 |
---|---|---|
committer | Andy Wingo <wingo@pobox.com> | 2011-03-31 22:17:50 +0200 |
commit | 987b8160f58185c50c4cf4703eb15f04f6cd9f89 (patch) | |
tree | b72404a1669cb0ebdb48991a064ba2de1e95b10b | |
parent | 09b7459b49f699a0ef95223bd35a0e88b8437a56 (diff) | |
download | guile-987b8160f58185c50c4cf4703eb15f04f6cd9f89.tar.gz |
fix gc_register_my_thread et al fallback impls
* libguile/threads.c (GC_register_my_thread, GC_get_stack_base): Fix
fallback impls.
-rw-r--r-- | libguile/threads.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libguile/threads.c b/libguile/threads.c index d81f4f4ef..14bda1d2f 100644 --- a/libguile/threads.c +++ b/libguile/threads.c @@ -97,7 +97,7 @@ struct GC_stack_base { }; static int -GC_register_my_thread (struct GC_stack_base *) +GC_register_my_thread (struct GC_stack_base *stack_base) { return GC_UNIMPLEMENTED; } @@ -153,7 +153,7 @@ get_thread_stack_base () #endif static int -GC_get_stack_base (struct GC_stack_base *) +GC_get_stack_base (struct GC_stack_base *stack_base) { stack_base->mem_base = get_thread_stack_base (); #ifdef __ia64__ |