Custom Query (1030 matches)
Results (682 - 684 of 1030)
| Ticket | Resolution | Summary | Owner | Reporter |
|---|---|---|---|---|
| #874 | fixed | Backtrace on Android + chrooted Debian | ||
| Description |
I'm trying to run CCL on an Acer Iconia A500. That's an Android tablet but I run Debian (Squeeze) in a chroot environment. CCL starts but backtraces don't seem to work: helmut@iconia:~/lisp/ccl$ uname -a Linux iconia 2.6.36.3 #3 SMP PREEMPT Fri May 13 00:20:42 CST 2011 armv7l GNU/Linux helmut@iconia:~/lisp/ccl$ rlwrap ./armcl Welcome to Clozure Common Lisp Version 1.7-dev-r14869 (LinuxARM32)! ? (/ 1 0) > Error: DIVISION-BY-ZERO detected > performing / on (1 0) > While executing: CCL::%FIXNUM-TRUNCATE, in process listener(1). > Type :POP to abort, :R for a list of available restarts. > Type :? for other options. 1 > b Origin 270332994 is not in the stack of NIL 1 > Is this a known problem of the ARM port? Has it something to do with the chroot tricks? Perhaps because /proc doesn't not working quite correclty with chroot? |
|||
| #877 | invalid | sticky default-initargs | ||
| Description |
Redefining a class does not work properly when the first def contains :default-initargs, but the second def does not. What happens is that use of the second def still has the default initiarg.
? (defclass foo () ((x :accessor x :initarg :x)) (:default-initargs :x 2)) ? (describe (make-instance 'foo)) #<FOO #x302093A3C44D> Class: #<STANDARD-CLASS FOO> Wrapper: #<CCL::CLASS-WRAPPER FOO #x302093A3E25D> Instance slots X: 2 ? (defclass foo () ((x :accessor x :initarg :x))) ? (describe (make-instance 'foo)) #<FOO #x302093A3C44D> Class: #<STANDARD-CLASS FOO> Wrapper: #<CCL::CLASS-WRAPPER FOO #x302093A3E25D> Instance slots X: 2 |
|||
| #879 | fixed | Exceptions occur at the time of a disconnection | ||
| Description |
On Win32 (Windows XP SP3), it seems CCL r14647 and later cause exceptions at the time of a disconnection. This is the quote from *inferior-lisp* buffer: %eax = 0x00000001 %ecx = 0x77bdc2e3 %edx = 0x00570608 %ebx = 0x012bb2b8 %esp = 0x015af510 %ebp = 0x015af528 %esi = 0x7ffaee88 %edi = 0x012bd320 %eip = 0x00026612 %eflags = 0x00010246 %cs = 0x001b %ds = 0x0023 %ss = 0x0023 %es = 0x0023 %fs = 0x003b %gs = 0x0000 Exception on foreign stack %eax = 0x012b8998 %ecx = 0x015aee98 %edx = 0x00000001 %ebx = 0x7ffaee88 %esp = 0x015aeed0 %ebp = 0x015aeee8 %esi = 0x7ffdce88 %edi = 0x00000000 %eip = 0x00027255 %eflags = 0x00010287 %cs = 0x001b %ds = 0x0023 %ss = 0x0023 %es = 0x0023 %fs = 0x003b %gs = 0x0000 Exception on foreign stack ... Can I ignore it? |
|||
