just::thread Support Forum

General Category => General Discussion about just::thread => Topic started by: Anthony Williams on February 04, 2011, 05:50:52 PM

Title: ANNOUNCE: Just::Thread V1.5.0 Released
Post by: Anthony Williams on February 04, 2011, 05:50:52 PM
I am pleased to announce that version 1.5.0 of just::thread (http://www.stdthread.co.uk), our C++0x Thread Library (http://www.stdthread.co.uk) has just been released.

This release heralds official support for Debian Lenny and Squeeze, and Fedora 13 and 14; no longer are Linux developers restricted to Ubuntu.

This version has also been updated to match the latest C++ working draft (http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2010/n3225.pdf). The resultant changes are:

Code: [Select]
int some_function();
std::shared_future<int> f(std::async(some_function)); // old syntax
auto f2=std::async(some_function).share(); // new syntax

This release also provides support for std::atomic<char16_t> and std::atomic<char32_t>, where char16_t and char32_t are provided by the underlying platform.