X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=benchmarks%2Fallocation.cl;fp=benchmarks%2Fallocation.cl;h=caebce2650944466879bcd0ead363f6ea62d7558;hb=c97f28462cb9499b4687b9d0fd969b3e9fbd6ca2;hp=6be7bf9a9558b03db6aa2141726ffd1a2e3353d4;hpb=de6c38979da779441669d5ed8fc6cb569201f845;p=uffi.git diff --git a/benchmarks/allocation.cl b/benchmarks/allocation.cl index 6be7bf9..caebce2 100644 --- a/benchmarks/allocation.cl +++ b/benchmarks/allocation.cl @@ -7,7 +7,7 @@ ;;;; Programmer: Kevin M. Rosenberg ;;;; Date Started: Mar 2002 ;;;; -;;;; $Id: allocation.cl,v 1.2 2002/03/21 14:49:14 kevin Exp $ +;;;; $Id: allocation.cl,v 1.3 2002/03/21 19:47:20 kevin Exp $ ;;;; ;;;; This file, part of UFFI, is Copyright (c) 2002 by Kevin M. Rosenberg ;;;; @@ -29,7 +29,8 @@ (setf (fli:dereference ptr) 0)) #+cmu (alien:with-alien ((ptr alien:signed)) - (setf ptr 0)) + (let ((p (alien:addr ptr))) + (setf (alien:deref p) 0))) ) (defun stk-vector () @@ -103,5 +104,7 @@ ) +(stk-vs-stat) +