Search Results

2
votes

Writing Multithreaded Exception-Safe Code

As others have discussed, concurrency (and thread-safety in particular,) is an architectural issue, that affects how you design your system and your application. But I would like to take yo …
1
vote

Will pthreads become obsolete once std:thread makes into C++Ox

std::thread does not include support for priorities, controlling the size of the thread stack, controlling the scheduling policy, or controlling the processor affinity. Scheduling class and …