From 161356d59bf0cb0e44084d1a11d61322e1a666b3 Mon Sep 17 00:00:00 2001 From: Nikodemus Siivola Date: Tue, 2 Dec 2008 17:43:34 +0000 Subject: [PATCH] 1.0.23.13: missing declaration from Cheyney GC port (broken by recent GC changes) * Thanks to Larry Valkama --- src/runtime/alloc.c | 2 ++ version.lisp-expr | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/runtime/alloc.c b/src/runtime/alloc.c index fea257276..fcff8cc73 100644 --- a/src/runtime/alloc.c +++ b/src/runtime/alloc.c @@ -73,6 +73,8 @@ pa_alloc(int bytes, int page_type_flag) static lispobj * pa_alloc(int bytes, int page_type_flag) { + lispobj *result; + /* FIXME: this is not pseudo atomic at all, but is called only from * interrupt safe places like interrupt handlers. MG - 2005-08-09 */ result = dynamic_space_free_pointer; diff --git a/version.lisp-expr b/version.lisp-expr index ec04c47df..cf1bee7cd 100644 --- a/version.lisp-expr +++ b/version.lisp-expr @@ -17,4 +17,4 @@ ;;; checkins which aren't released. (And occasionally for internal ;;; versions, especially for internal versions off the main CVS ;;; branch, it gets hairier, e.g. "0.pre7.14.flaky4.13".) -"1.0.23.12" +"1.0.23.13" -- 2.11.4.GIT