* Only -1 as result means the spawn failed: other negative
return values are error codes.
** floating point exceptions are now reported correctly.
** stack exhaustion detection works partially.
** more accurate GET-INTERNAL-REAL-TIME.
+ ** better RUN-PROGRAM behaviour in case of errors in the child
+ process.
changes in sbcl-0.9.18 (1.0.beta?) relative to sbcl-0.9.17:
* enhancement: SB-POSIX now supports cfsetispeed(3), cfsetospeed(3),
(spawn pfile args-vec
stdin stdout stderr
(if wait 1 0)))))
- (when (< handle 0)
+ (when (= handle -1)
(error "Couldn't spawn program: ~A" (strerror)))
(setf proc
(if wait
;;; 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".)
-"0.9.18.6"
+"0.9.18.7"