[cffi-devel] Re: 'cancel-finalization'
Luke Crook
luke at balooga.com
Sat Dec 23 05:05:00 UTC 2006
The following code causes CLISP to core on Windows XP. I think perhaps there is
a bug in CFFI as Lispworks does not crash with the same code.
- CLISP "2.38 (2006-01-24)"
- CFFI "cffi-061220.tar.gz"
(defclass a-test () ())
(defmethod initialize-instance :after ((self a-test) &key)
(cffi:finalize self (lambda ()
nil)))
(dotimes (i 10000)
(make-instance 'a-test))
More information about the cffi-devel
mailing list