$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r77083 - website/public_html/beta/feed/history
From: chris_at_[hidden]
Date: 2012-02-20 15:54:51
Author: chris_kohlhoff
Date: 2012-02-20 15:54:50 EST (Mon, 20 Feb 2012)
New Revision: 77083
URL: http://svn.boost.org/trac/boost/changeset/77083
Log:
Add asio.
Text files modified: 
   website/public_html/beta/feed/history/boost_1_49_0.qbk |    29 ++++++++++++++++++++++++++++-           
   1 files changed, 28 insertions(+), 1 deletions(-)
Modified: website/public_html/beta/feed/history/boost_1_49_0.qbk
==============================================================================
--- website/public_html/beta/feed/history/boost_1_49_0.qbk	(original)
+++ website/public_html/beta/feed/history/boost_1_49_0.qbk	2012-02-20 15:54:50 EST (Mon, 20 Feb 2012)
@@ -3,7 +3,7 @@
     [source-mode c++]
     [purpose
     New Library: Heap.
-    Updated Libraries: Chrono, Container, Filesystem, Geometry, Graph,
+    Updated Libraries: Asio, Chrono, Container, Filesystem, Geometry, Graph,
     Icl, Interprocess, Intrusive, Lexical Cast, Locale, Move,
     Property Tree, Spirit, Thread, Unordered, Uuid.
     ]
@@ -26,6 +26,33 @@
 
 [section Updated Libraries]
 
+* [phrase library..[@/libs/asio Asio]:]
+  * Added a new class template `basic_waitable_timer` based around the C++11 clock
+    type requirements. It may be used with the clocks from the C++11 `<chrono>`
+    library facility or, if those are not available, Boost.Chrono. The typedefs
+    `high_resolution_timer`, `steady_timer` and `system_timer` may be used to
+    create timer objects for the standard clock types.
+  * Added a new `windows::object_handle` class for performing waits on Windows
+    kernel objects. Thanks go to Boris Schaeling for contributing substantially
+    to the development of this feature.
+  * On Linux, `connect()` can return EAGAIN in certain circumstances. Remapped
+    this to another error so that it doesn't look like a non-blocking operation
+    ([@https://svn.boost.org/trac/boost/ticket/6048 #6048]).
+  * Fixed a compile error on NetBSD
+    ([@https://svn.boost.org/trac/boost/ticket/6098 #6098]).
+  * Fixed deadlock on Mac OS X
+    ([@https://svn.boost.org/trac/boost/ticket/6275 #6275]).
+  * Fixed a regression in `buffered_write_stream`
+    ([@https://svn.boost.org/trac/boost/ticket/6310 #6310]).
+  * Fixed a non-paged pool "leak" on Windows when an `io_service` is repeatedly
+    run without anything to do
+    ([@https://svn.boost.org/trac/boost/ticket/6321 #6321]).
+  * Reverted earlier change to allow some speculative operations to be performed
+    without holding the lock, as it introduced a race condition in some
+    multithreaded scenarios.
+  * Fixed a bug where the second buffer in an array of two buffers may be ignored
+    if the first buffer is empty.
+
 * [phrase library..[@/libs/chrono Chrono]:]
   * Bug Fixes:
     * [@http://svn.boost.org/trac/boost/ticket/6092 #6092] Input from non integral durations makes the compiler fail.