[movitz-cvs] CVS update: movitz/losp/muerte/cons.lisp
Frode Vatvedt Fjeld
ffjeld at common-lisp.net
Thu Jul 15 21:06:51 UTC 2004
Update of /project/movitz/cvsroot/movitz/losp/muerte
In directory common-lisp.net:/tmp/cvs-serv23869
Modified Files:
cons.lisp
Log Message:
This rather substantial check-in is a clean-up of all things related
to dynamic memory allocation. In particular, the separation between
the muerte kernel with its 'default' memory management (which simply
allocates objects consecutively until it runs out) and the los0 GC
implementation is improved.
Date: Thu Jul 15 14:06:51 2004
Author: ffjeld
Index: movitz/losp/muerte/cons.lisp
diff -u movitz/losp/muerte/cons.lisp:1.4 movitz/losp/muerte/cons.lisp:1.5
--- movitz/losp/muerte/cons.lisp:1.4 Sat Apr 17 08:34:03 2004
+++ movitz/losp/muerte/cons.lisp Thu Jul 15 14:06:51 2004
@@ -9,7 +9,7 @@
;;;; Created at: Fri Dec 8 15:25:45 2000
;;;; Distribution: See the accompanying file COPYING.
;;;;
-;;;; $Id: cons.lisp,v 1.4 2004/04/17 15:34:03 ffjeld Exp $
+;;;; $Id: cons.lisp,v 1.5 2004/07/15 21:06:51 ffjeld Exp $
;;;;
;;;;------------------------------------------------------------------
@@ -244,4 +244,4 @@
(with-inline-assembly (:returns :eax)
(:compile-form (:result-mode :eax) car)
(:compile-form (:result-mode :ebx) cdr)
- (:call-global-constant fast-cons)))
+ (:call-local-pf fast-cons)))
More information about the Movitz-cvs
mailing list