[cmucl-commit] [git] CMU Common Lisp branch master updated. snapshot-2014-06-2-gcef7a42

Raymond Toy rtoy at common-lisp.net
Wed Jul 2 13:45:17 UTC 2014


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 "CMU Common Lisp".

The branch, master has been updated
       via  cef7a420993388f21ea2ba733b57b3651f4f5b3b (commit)
      from  0cf9036d307ffcf6690851b114607b7571706799 (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 cef7a420993388f21ea2ba733b57b3651f4f5b3b
Author: Raymond Toy <toy.raymond at gmail.com>
Date:   Mon Jun 30 21:01:23 2014 -0700

    Fix declaration of min-av-mem-age in generation-stats.
    
    It's an int, not a double.

diff --git a/src/code/gc.lisp b/src/code/gc.lisp
index b12daba..5af87ed 100644
--- a/src/code/gc.lisp
+++ b/src/code/gc.lisp
@@ -581,7 +581,7 @@
     (num-gc c-call:int)
     (trigger-age c-call:int)
     (cum-sum-bytes-allocated c-call:int)
-    (min-av-mem-age c-call:double)))
+    (min-av-mem-age c-call:int)))
 
 (defun gencgc-stats (generation)
   "Return some GC statistics for the specified GENERATION.  The

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

Summary of changes:
 src/code/gc.lisp |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)


hooks/post-receive
-- 
CMU Common Lisp


More information about the cmucl-commit mailing list