Ticket #7245: doc.patch

File doc.patch, 3.1 KB (added by viboes, 10 years ago)
  • thread_ref.qbk

     
    470470[variablelist
    471471
    472472[[Effects:] [Transfers ownership of the thread managed by `other` (if
    473 any) to `*this`. Version 1: If there was a thread previously associated with
    474 `*this` then that thread is detached, version 2: If the thread is joinable calls to std::terminate.]]
     473any) to `*this`. Version 2: If there was a thread previously associated with
     474`*this` then that thread is detached, version 3: If the thread is joinable calls to std::terminate.]]
    475475
    476476[[Postconditions:] [`other->get_id()==thread::id()` and `get_id()` returns the value of `other.get_id()` prior to the assignment.]]
    477477
  • overview.qbk

     
    2020[@http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2006/n2139.html N2139], and
    2121[@http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2006/n2094.html N2094]
    2222
    23 Vicente J. Botet Escriba started in version 2 the adaptation to comply with the accepted Thread C++11 library (Make use of Boost.Chrono and Boost.Move) and the [@http://home.roadrunner.com/~hinnant/bloomington/shared_mutex.html Shared Locking] Howard Hinnant proposal except for the upward conversions. 
     23Vicente J. Botet Escriba started in version 3 the adaptation to comply with the accepted Thread C++11 library (Make use of Boost.Chrono and Boost.Move) and the [@http://home.roadrunner.com/~hinnant/bloomington/shared_mutex.html Shared Locking] Howard Hinnant proposal except for the upward conversions. 
    2424Some minor features have been added also as thread attributes, reverse_lock, shared_lock_guard.
    2525
    2626In order to use the classes and functions described here, you can
  • configuration.qbk

     
    4444
    4545[section:shared_upwards Shared Locking Upwards Conversion]
    4646
    47 Boost.Threads includes in version 2 the Shared Locking Upwards Conversion as defined in [@http://home.roadrunner.com/~hinnant/bloomington/shared_mutex.html Shared Locking].
     47Boost.Threads includes in version 3 the Shared Locking Upwards Conversion as defined in [@http://home.roadrunner.com/~hinnant/bloomington/shared_mutex.html Shared Locking].
    4848These conversions need to be used carefully to avoid deadlock or livelock. The user need to define explicitly `BOOST_THREAD_PROVIDES_SHARED_MUTEX_UPWARDS_CONVERSION` to get these upwards conversions.
    4949
    5050When `BOOST_THREAD_VERSION==2` define `BOOST_THREAD_PROVIDES_SHARED_MUTEX_UPWARDS_CONVERSION ` if you want these features.
     
    201201If __SUNPRO_CC < 0x5100 the library defines
    202202
    203203* `BOOST_THREAD_DONT_USE_MOVE`
     204
     205If __SUNPRO_CC < 0x5100 the library defines
     206
    204207* `BOOST_THREAD_DONT_PROVIDE_FUTURE_CTOR_ALLOCATORS`
    205208
    206209
    207210[endsect]
    208211[section:vacpp VACPP]
    209212
    210 If __IBMCPP__ is defined the library defines
     213If __IBMCPP__ < 1100 the library defines
    211214
    212215* `BOOST_THREAD_DONT_USE_CHRONO`
    213216