ANNOUNCE: just::thread library V1.3 released #201369 (1/14/2010 9:09:05 PM) comp.lang.c++.moderated Hi,
I am pleased to announce that version 1.3 of just::thread, our C++0x
Thread Library has just been released. With just::thread you can use the
multithreading facilities from the new C++0x standard with ... Anthony
ANNOUNCE: just::thread library V1.3 released0103 (1/14/2010 9:43:34 AM) comp.programming.threads Hi,
I am pleased to announce that version 1.3 of just::thread, our C++0x
Thread Library has just been released. With just::thread you can use the
multithreading facilities from the new C++0x standard with ... Anthony
Win a copy of the just::thread C++0x thread library224 (10/19/2009 12:32:28 PM) comp.lang.c++ You could win one of three copies of our implementation of the C++0x thread library for Windows and Linux we have up for grabs in our Halloween Contest. Not only does just::thread provide a complete implementa... Anthony
atexit and thread-specific-storage2211 (7/9/2007 7:48:06 PM) comp.programming.threads Hi folks, I've just been thinking about thread-specific storage, with the idea of writing some portable C++ wrapper functions, and have been experimenting with the pthread TSS functions on Linux with the follo... anthony
C++0x: Communication with signal handler348 (9/8/2008 4:28:11 PM) comp.lang.c++ Latest C++0x draft N2723, 2008-08-25: "1.9/7 When the processing of the abstract machine is interrupted by receipt of a signal, the values of objects which are neither =97 of type volatile std::sig_atomic_t nor... dvyukov(151)
looking for elegant C++ abstraction around pthread_key_t...724 (10/30/2008 11:48:18 PM) comp.lang.c++ Here is what I am playing around with now: _________________________________________________________________ /* Simple TSD Object ______________________________________________________________*/ #include #incl... no6(2791)
C++1x: lock-free algos and blocking1440 (10/18/2009 10:50:45 AM) comp.lang.c++ C++1x provides a complete toolset for lock-based programming: mutex for ensuring consistency and condition variable for blocking/ signaling. However, as for lock-free (non-blocking) programming C++1x provides o... dvyukov(151)
Win a copy of the just::thread C++0x thread library224 (10/19/2009 12:32:28 PM) comp.lang.c++ You could win one of three copies of our implementation of the C++0x thread library for Windows and Linux we have up for grabs in our Halloween Contest. Not only does just::thread provide a complete implementa... anthony.ajw(46)
Resolving ambiguity916 (10/21/2009 2:54:25 PM) comp.lang.c++ Hello, Does any of you guys how to solve the following ambiguity? Consider the following class declaration snippet: class Foo { : public: SomeDataType& operator [](unsigned); SomeDataType& operator [... beclann
Difficulty with "Local Types as Template Arguments"117 (2/10/2010 11:48:22 AM) comp.lang.c++ Hello, I noticed that C++0x will allow the following: void func() { struct Op { // locally defined type void operator()(int arg) { /*...*/ } }; std::for_each(..., Op()); // using Op as template arg... towitowi(2)
has_member help11142 (8/12/2010 4:05:56 AM) comp.lang.c++ I've been trying to find a way to enable templates for a class based
on
whether or not that class has a member function. So far, all the
examples
I can find are if class T has member "known_name". But I'm s... jonathan.lee.975(31)
MT Design Question133193 (8/24/2010 6:24:48 PM) comp.lang.c++ This is a threading-related design question assuming that C++0x is the
implementation language.
Suppose I have a graph that I want to search for a node that has some
characteristic (e.g., holds a value wi... Scott
Initialization of local statics6114 (9/26/2010 1:00:36 PM) comp.lang.c++ Hi,
the following code
#include
struct A
{ A() { puts("A()"); }
~A() { puts("~A()"); }
};
static const A& foo()
{ puts("foo()");
static const A var;
return va... ISO