Custom Query (1030 matches)
Results (691 - 693 of 1030)
| Ticket | Resolution | Summary | Owner | Reporter |
|---|---|---|---|---|
| #701 | fixed | kernel crash in 64 bit trunk build under 64 bit linux while gc'ing after creating large vector | ||
| Description |
I just checked all active tickets and didn't see any report like this. I also updated to the trunk and rebuilt to make sure this bug still exists there. (setq *print-array* nil) (setq foo (make-array 1000000000)) (length foo) (setq foo nil) 1 2 3 4 (gc) (the extra expressions/values were to get rid of pointers to the vector in *, and *) results in a sigsegv! |
|||
| #703 | fixed | Typo in bridge.lisp | ||
| Description |
ns::wint-ns-affine-transform-struct presumably should be ns::with-ns-affine-transform-struct |
|||
| #704 | fixed | eql-specializer-objects are not freed (remove-method) | ||
| Description |
Just tried this https://bugs.launchpad.net/sbcl/+bug/492851 in CCL and got the same result after a while. Here is the code: (defgeneric blah (x))
(defun test ()
(let ((object (make-list 10000)))
(defmethod blah ((x (eql object)))
(format t "~A~%" x))
(remove-method #'blah (first (generic-function-methods #'blah))))
(values))
Then do:
..and memory use keeps rising. |
|||
