1.0.48.26: sb-posix: export WNOHANG and WUNTRACED
authorNikodemus Siivola <nikodemus@random-state.net>
Fri, 27 May 2011 10:39:13 +0000 (10:39 +0000)
committerNikodemus Siivola <nikodemus@random-state.net>
Fri, 27 May 2011 10:39:13 +0000 (10:39 +0000)
  EOM.

NEWS
contrib/sb-posix/constants.lisp
version.lisp-expr

diff --git a/NEWS b/NEWS
index 6fb8705..bdd10db 100644 (file)
--- 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.
index 3aab1b6..48660fa 100644 (file)
 #-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")
index 0067ef3..61db4e8 100644 (file)
@@ -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"