add SB-POSIX:MAP-ANON
authorNikodemus Siivola <nikodemus@random-state.net>
Thu, 24 Nov 2011 12:36:15 +0000 (14:36 +0200)
committerNikodemus Siivola <nikodemus@random-state.net>
Sun, 3 Feb 2013 17:21:03 +0000 (19:21 +0200)
NEWS
contrib/sb-posix/constants.lisp

diff --git a/NEWS b/NEWS
index 4ffb8b2..e0fea8f 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -23,6 +23,7 @@ changes relative to sbcl-1.1.4:
        SB-DEBUG:BACKTRACE-AS-LIST.
     ** SB-DEBUG:*SHOW-ENTRY-POINT-DETAILS** has been deprecated, as the same
        information is available in less intrusive form as frame annotations.
+  * enhancement: SB-POSIX now supports provides MAP-ANON.
   * bug fix: no more unused variable style warnings from RESTART-CASE
     macroexpansion (lp#1113859)
   * bug fix: deleting a package removes it from implementation-package
index 48660fa..0b66705 100644 (file)
  (:integer map-shared "MAP_SHARED" "mmap: shared memory" t)
  (:integer map-private "MAP_PRIVATE" "mmap: private mapping" t)
  (:integer map-fixed "MAP_FIXED" "mmap: map at given location" t)
+ (:integer map-anon "MAP_ANON" "mmap: anonymous mapping not associated with any file" t)
 
  ;; msync()
  (:integer ms-async "MS_ASYNC" "msync: return immediately" t)