$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r84545 - in trunk: boost/interprocess/sync libs/interprocess/doc
From: igaztanaga_at_[hidden]
Date: 2013-05-29 03:24:14
Author: igaztanaga
Date: 2013-05-29 03:24:13 EDT (Wed, 29 May 2013)
New Revision: 84545
URL: http://svn.boost.org/trac/boost/changeset/84545
Log:
Fixes #8277
Text files modified: 
   trunk/boost/interprocess/sync/named_mutex.hpp |    10 +++++-----                              
   trunk/libs/interprocess/doc/interprocess.qbk  |     6 ++++++                                  
   2 files changed, 11 insertions(+), 5 deletions(-)
Modified: trunk/boost/interprocess/sync/named_mutex.hpp
==============================================================================
--- trunk/boost/interprocess/sync/named_mutex.hpp	(original)
+++ trunk/boost/interprocess/sync/named_mutex.hpp	2013-05-29 03:24:13 EDT (Wed, 29 May 2013)
@@ -56,7 +56,7 @@
    /// @endcond
 
    public:
-   //!Creates a global interprocess_mutex with a name.
+   //!Creates a global mutex with a name.
    //!Throws interprocess_exception on error.
    named_mutex(create_only_t create_only, const char *name, const permissions &perm = permissions());
 
@@ -82,19 +82,19 @@
    ~named_mutex();
 
    //!Unlocks a previously locked
-   //!interprocess_mutex.
+   //!mutex.
    void unlock();
 
-   //!Locks interprocess_mutex, sleeps when interprocess_mutex is already locked.
+   //!Locks the mutex, sleeps when the mutex is already locked.
    //!Throws interprocess_exception if a severe error is found
    void lock();
 
-   //!Tries to lock the interprocess_mutex, returns false when interprocess_mutex
+   //!Tries to lock the mutex, returns false when the mutex
    //!is already locked, returns true when success.
    //!Throws interprocess_exception if a severe error is found
    bool try_lock();
 
-   //!Tries to lock the interprocess_mutex until time abs_time,
+   //!Tries to lock the the mutex until time abs_time,
    //!Returns false when timeout expires, returns true when locks.
    //!Throws interprocess_exception if a severe error is found
    bool timed_lock(const boost::posix_time::ptime &abs_time);
Modified: trunk/libs/interprocess/doc/interprocess.qbk
==============================================================================
--- trunk/libs/interprocess/doc/interprocess.qbk	(original)
+++ trunk/libs/interprocess/doc/interprocess.qbk	2013-05-29 03:24:13 EDT (Wed, 29 May 2013)
@@ -6713,6 +6713,12 @@
 
 [section:release_notes Release Notes]
 
+[section:release_notes_boost_1_55_00 Boost 1.55 Release]
+
+*  Fixed bug [@https://svn.boost.org/trac/boost/ticket/8277 #8277].
+
+[endsect]
+
 [section:release_notes_boost_1_54_00 Boost 1.54 Release]
 
 *  Added support for platform-specific flags to mapped_region (ticket #8030)