Mention safepoints in NEWS
authorDavid Lichteblau <david@lichteblau.com>
Tue, 18 Sep 2012 15:11:40 +0000 (17:11 +0200)
committerDavid Lichteblau <david@lichteblau.com>
Thu, 27 Sep 2012 18:34:22 +0000 (20:34 +0200)
CREDITS
NEWS

diff --git a/CREDITS b/CREDITS
index 5492c8d..170243f 100644 (file)
--- a/CREDITS
+++ b/CREDITS
@@ -830,6 +830,7 @@ Raymond Wiker:
 INITIALS GLOSSARY (helpful when reading comments, CVS commit logs, etc.)
 
 AB   Alastair Bridgewater
+AK   Anton Kovalenko
 AL   Arthur Lemmens
 APD  Alexey Dejneka
 CLH  Cyrus Harmon
diff --git a/NEWS b/NEWS
index bdffa5c..9403b96 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -6,6 +6,13 @@ changes relative to sbcl-1.0.58:
     WAIT-P argument added to WITH-RECURSIVE-LOCK.
   * enhancement: SB-EXT:ATOMIC-PUSH and SB-EXT:ATOMIC-POP allow atomic operations
     on list heads.
+  * enhancement: Optional features (not enabled by default) allow the
+    use of signals for inter-thread synchronization to be reduced on certain
+    supported platforms (currently Linux, Solaris, and FreeBSD on x86 and
+    x86-64).  Set (and :sb-thread :sb-safepoint :sb-thruption :sb-wtimer)
+    to test these experimental features.  Known remaining bugs include minor
+    thread safety issues, less timely freeing of memory by GC, and certain
+    (not yet optimally low) runtime overhead.  Thanks to Anton Kovalenko.
   * optimization: CL:SORT and CL:STABLE-SORT of lists are faster and use fewer
     comparisons, particularly on almost-sorted inputs.
   * bug fix: Reading floats with large exponents no longer takes too much time