From: Nikodemus Siivola Date: Tue, 2 Dec 2008 17:43:34 +0000 (+0000) Subject: 1.0.23.13: missing declaration from Cheyney GC port (broken by recent GC changes) X-Git-Url: http://repo.macrolet.net/gitweb/?a=commitdiff_plain;h=161356d59bf0cb0e44084d1a11d61322e1a666b3;p=sbcl.git 1.0.23.13: missing declaration from Cheyney GC port (broken by recent GC changes) * Thanks to Larry Valkama --- diff --git a/src/runtime/alloc.c b/src/runtime/alloc.c index fea2572..fcff8cc 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 ec04c47..cf1bee7 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"