-
I second this, it's the only plugin that stops the default installation from working. Any clues on what's causing this?.
2007-04-26 18:57:07 UTC in Launchy
-
Well, I was trying to load clqsl in clisp, and it uses such a variable to either make some comparisons or to pass as (null) arguments to foreign functions. I guess it should be cheaper than having to call a function every time we need a null pointer.
I understand why all other pointers are invalidated, but a null pointer is, and always will be, a set of zeros, so I don't see a point in...
2007-02-14 15:24:19 UTC in CLISP - an ANSI Common Lisp
-
this is the standard request for more information.
1. what is your platform?
("uname -a" on a Unix system)
compiler version? libc (on Linux)?
2. where did you get the sources? when?
(absolute dates are prefered over the relative ones)
3. how did you build CLISP? (what command, options &c)
please do a clean build (remove your build directory and
build CLISP with...
2007-02-14 15:24:19 UTC in CLISP - an ANSI Common Lisp
-
When loading an image where a variable was set to a null foreign pointer, like:
(defvar null-ptr (ffi:unsigned-foreign-address 0))
access to null-ptr returns an invalid foreign pointer, instead of valid (as it was before the image was saved and stopped). Here's a sample code that demonstrates this problem:
,-----
| (asdf:operate 'asdf:load-op 'cffi)
| (asdf:operate 'asdf:load-op...
2007-02-14 01:38:40 UTC in CLISP - an ANSI Common Lisp