[git] CMU Common Lisp branch master updated. snapshot-2013-04-15-g77292df

Raymond Toy rtoy at common-lisp.net
Sat May 4 19:36:56 UTC 2013


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  77292dfb3ae1619c830a10a957d44962d5cc7b5a (commit)
      from  a923563fe3475ea90faa7e8e3c378436f41daa39 (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 77292dfb3ae1619c830a10a957d44962d5cc7b5a
Author: Raymond Toy <toy.raymond at gmail.com>
Date:   Sat May 4 12:36:31 2013 -0700

    Fix compiler warning on sparc about 1st arg to madvise.

diff --git a/src/lisp/gencgc.c b/src/lisp/gencgc.c
index 708e2fa..6909292 100644
--- a/src/lisp/gencgc.c
+++ b/src/lisp/gencgc.c
@@ -6999,7 +6999,7 @@ free_oldspace(void)
 
               page_start = (int *) page_address(first_page);
 
-              madvise(page_start, GC_PAGE_SIZE * (last_page - first_page), GENCGC_MADVISE);
+              madvise((void*) page_start, GC_PAGE_SIZE * (last_page - first_page), GENCGC_MADVISE);
               for (page = first_page; page < last_page; ++page) {
                   page_start = (int *) page_address(page);
                   *page_start = PAGE_NEEDS_ZEROING_MARKER;

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

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


hooks/post-receive
-- 
CMU Common Lisp



More information about the cmucl-cvs mailing list