guile-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Guile-commits] GNU Guile branch, stable-2.0, updated. v2.0.0-154-g987b8


From: Andy Wingo
Subject: [Guile-commits] GNU Guile branch, stable-2.0, updated. v2.0.0-154-g987b816
Date: Thu, 31 Mar 2011 20:17:46 +0000

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU Guile".

http://git.savannah.gnu.org/cgit/guile.git/commit/?id=987b8160f58185c50c4cf4703eb15f04f6cd9f89

The branch, stable-2.0 has been updated
       via  987b8160f58185c50c4cf4703eb15f04f6cd9f89 (commit)
      from  09b7459b49f699a0ef95223bd35a0e88b8437a56 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 987b8160f58185c50c4cf4703eb15f04f6cd9f89
Author: Kevin Fletcher <address@hidden>
Date:   Thu Mar 31 22:16:54 2011 +0200

    fix gc_register_my_thread et al fallback impls
    
    * libguile/threads.c (GC_register_my_thread, GC_get_stack_base): Fix
      fallback impls.

-----------------------------------------------------------------------

Summary of changes:
 libguile/threads.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/libguile/threads.c b/libguile/threads.c
index d81f4f4..14bda1d 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__


hooks/post-receive
-- 
GNU Guile



reply via email to

[Prev in Thread] Current Thread [Next in Thread]