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-199-g0fbdb


From: Andy Wingo
Subject: [Guile-commits] GNU Guile branch, stable-2.0, updated. v2.0.0-199-g0fbdbe6
Date: Fri, 15 Apr 2011 16:42:12 +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=0fbdbe6c840d26f3910dfdcfe4049f8769786c24

The branch, stable-2.0 has been updated
       via  0fbdbe6c840d26f3910dfdcfe4049f8769786c24 (commit)
      from  66b229d56ec8f3e023a76b9ebcf8c9fed7640834 (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 0fbdbe6c840d26f3910dfdcfe4049f8769786c24
Author: Andy Wingo <address@hidden>
Date:   Fri Apr 15 16:41:34 2011 +0000

    fix pre-GC_set_start_callback compilation
    
    * libguile/gc.c: Move declaration of run_before_gc_hook up.

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

Summary of changes:
 libguile/gc.c |   13 +++++++------
 1 files changed, 7 insertions(+), 6 deletions(-)

diff --git a/libguile/gc.c b/libguile/gc.c
index 341af6f..7d2724c 100644
--- a/libguile/gc.c
+++ b/libguile/gc.c
@@ -198,6 +198,13 @@ scm_t_c_hook scm_after_sweep_c_hook;
 scm_t_c_hook scm_after_gc_c_hook;
 
 
+static void
+run_before_gc_c_hook (void)
+{
+  scm_c_hook_run (&scm_before_gc_c_hook, NULL);
+}
+
+
 /* GC Statistics Keeping
  */
 unsigned long scm_gc_ports_collected = 0;
@@ -550,12 +557,6 @@ scm_gc_unregister_roots (SCM *b, unsigned long n)
     scm_gc_unregister_root (p);
 }
 
-static void
-run_before_gc_c_hook (void)
-{
-  scm_c_hook_run (&scm_before_gc_c_hook, NULL);
-}
-
 
 
 


hooks/post-receive
-- 
GNU Guile



reply via email to

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