Custom Query (1030 matches)
Results (457 - 459 of 1030)
| Ticket | Resolution | Summary | Owner | Reporter |
|---|---|---|---|---|
| #291 | fixed | ccl::%rmdir does not work on FreeBSD | ||
| Description |
paracetamol 65_> mkdir /tmp/abc paracetamol 66_> ccl -n Welcome to Clozure Common Lisp Version 1.2-r9337S (FreebsdX8664)! ? (ccl::%rmdir "/tmp/abc") -12 ? (quit) lparacetamol 67_> ls -lsd /tmp/abc 2 drwxrwxr-x 2 hans wheel 512 Apr 30 23:35 /tmp/abc/ paracetamol 68_> uname -a FreeBSD paracetamol.bknr.net 6.3-RELEASE FreeBSD 6.3-RELEASE #0: Wed Jan 16 01:43:02 UTC 2008 root@…:/usr/obj/usr/src/sys/SMP amd64 |
|||
| #293 | fixed | ADVISE makes functions cons | ||
| Description |
When a function is advised, it conses a small amount of memory every time it is called. It seems as if ADVISE-GLOBAL-DEF is at fault. It would be better if the encapsulation for the function would not allocate memory, i.e. to reduce overhead when profiling inner loops. |
|||
| #299 | invalid | CCL does not resolve forward-referenced accessors defined by defstruct in the same compilation unit | ||
| Description |
When compiling a file that uses a setf accessor defined by defstruct before the defstruct is seen, CCL fails to resolve the reference. hertha 322_> cat foo.lisp
(defpackage "FOO" (:use "CL"))
(in-package "FOO")
(defun test ()
(let ((tpl (make-template :mode 1)))
(setf (template-mode tpl) 2)
(template-mode tpl)))
(defstruct template mode)
hertha 323_> ccl -n
Welcome to Clozure Common Lisp Version 1.2-r9260M-trunk (DarwinPPC32)!
? (load (compile-file "foo.lisp"))
;Compiler warnings for "/private/tmp/foo.lisp" :
; In FOO::TEST: Undefined function SETF::|FOO::TEMPLATE-MODE|
#P"/private/tmp/foo.dfsl"
|
|||
