From: Nikodemus Siivola Date: Fri, 27 May 2011 10:39:13 +0000 (+0000) Subject: 1.0.48.26: sb-posix: export WNOHANG and WUNTRACED X-Git-Url: http://repo.macrolet.net/gitweb/?a=commitdiff_plain;h=f7de89dcaba119117767ac899620b0a649b60799;p=sbcl.git 1.0.48.26: sb-posix: export WNOHANG and WUNTRACED EOM. --- diff --git a/NEWS b/NEWS index 6fb8705..bdd10db 100644 --- a/NEWS +++ b/NEWS @@ -17,6 +17,7 @@ changes relative to sbcl-1.0.48: spines, not their argumets. While portable code should not rely on this, particularly in combination with inlining, it should make dynamic-extent easier and safer to use. + * enhancement: SB-POSIX exports WNOHANG and WUNTRACED. * optimization: using a &REST argument only in APPLY or VALUES-LIST calls allows the compiler to automatically elide rest-list allocation so long as the call sites are in functions that the compiler knows cannot escape. diff --git a/contrib/sb-posix/constants.lisp b/contrib/sb-posix/constants.lisp index 3aab1b6..48660fa 100644 --- a/contrib/sb-posix/constants.lisp +++ b/contrib/sb-posix/constants.lisp @@ -210,8 +210,8 @@ #-sunos (:errno emediumtype "EMEDIUMTYPE" nil t) ;; wait - (:integer wnohang "WNOHANG") - (:integer wuntraced "WUNTRACED") + (:integer wnohang "WNOHANG" nil t) + (:integer wuntraced "WUNTRACED" nil t) ;; mode_t (:type mode-t "mode_t") diff --git a/version.lisp-expr b/version.lisp-expr index 0067ef3..61db4e8 100644 --- a/version.lisp-expr +++ b/version.lisp-expr @@ -20,4 +20,4 @@ ;;; 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.48.25" +"1.0.48.26"