changes in sbcl-1.0.28 relative to 1.0.27:
* bug fix: timers could go off in the wrong order, be delayed indefinitely
(thanks to Ole Arndt for the patch)
+ * bug fix: RESTART-FRAME and RETURN-FROM-FRAME stack corruption
changes in sbcl-1.0.27 relative to 1.0.26:
* new port: support added for x86-64 OpenBSD. (thanks to Josh Elsasser)
temp)
;; Allocate space for magic UWP block.
- (inst sub rsp-tn unwind-block-size)
+ (inst sub rsp-tn (* unwind-block-size n-word-bytes))
;; Set up magic catch / UWP block.
(move block rsp-tn)
(loadw temp uwp sap-pointer-slot other-pointer-lowtag)
temp)
;; Allocate space for magic UWP block.
- (inst sub esp-tn unwind-block-size)
+ (inst sub esp-tn (* unwind-block-size n-word-bytes))
;; Set up magic catch / UWP block.
(move block esp-tn)
(loadw temp uwp sap-pointer-slot other-pointer-lowtag)
;;; checkins which aren't released. (And occasionally for internal
;;; versions, especially for internal versions off the main CVS
;;; branch, it gets hairier, e.g. "0.pre7.14.flaky4.13".)
-"1.0.27.2"
+"1.0.27.3"