Boost.Thread enables the use of multiple threads of execution with shared data in portable C++ code.
39
votes
5answers
29k views
Example for boost shared_mutex (multiple reads/one write)?
I have a multithreaded app that has to read some data often, and occasionally that data is updated. Right now a mutex keeps access to that data safe, but it's expensive because I would like multiple ...
10
votes
2answers
10k views
Creating a thread pool using boost
Is it possible to create a thread pool using boost's thread?
i was looking all over boost's libs and I couldn't find a thread pool manager (or something like that)...
Is there a way to do it?
tnx!
9
votes
3answers
4k views
C++0x has no semaphores? How to synchronize threads?
Hallo,
is it true that C++0x will come without semaphores? There are already some questions on stackoverflow regarding the use of semaphores. I use them (posix semaphores) all the time to let a ...
7
votes
3answers
8k views
Can I create a software watchdog timer thread in C++ using Boost Signals2 and Threads?
I am running function Foo from somebody else's library in a single-threaded application currently. Most of the time, I make a call to Foo and it's really quick, some times, I make a call to Foo and ...
7
votes
2answers
2k views
How to make boost::thread_group execute a fixed number of parallel threads
This is the code to create a thread_group and execute all threads in parallel:
boost::thread_group group;
for (int i = 0; i < 15; ++i)
group.create_thread(aFunctionToExecute);
...
9
votes
3answers
846 views
How to use lock_guard when returning protected data
I have a question concerning the use of boost::lock_guard (or similar scoped locks) and using variables that should be protected by the lock in a return statement.
How is the order of destroying ...
20
votes
9answers
13k views
C++ Thread Pool
What is a good open source implementation of a thread pool for C++ to use in production code (something like boost)?
Please provide either your own example code or a link to example code usage.
5
votes
2answers
5k views
Example of how to use boost upgradeable mutexes
I have a multithreaded server application that needs mutex locks over some shared memory.
The shared memory are basically sTL maps etc.
Much of the time I'm just reading from the map.
But, I also ...
8
votes
4answers
3k views
What’s the best way to delete boost::thread object right after its work is complete?
I create boost::thread object with a new operator and continue without waiting this thread to finish its work:
void do_work()
{
// perform some i/o work
}
boost::thread *thread = new ...
8
votes
10answers
3k views
Can multithreading speed up memory allocation?
I'm working with an 8 core processor, and am using Boost threads to run a large program.
Logically, the program can be split into groups, where each group is run by a thread.
Inside each group, some ...
11
votes
2answers
3k views
Give a name to a boost thread?
Is it possible to give a name to a boost::thread so that the debuggers tables and the crash logs can be more readable? How?
8
votes
2answers
2k views
thread destructors in C++0x vs boost
These days I am reading the pdf Designing MT programs . It explains that the user MUST explicitly call detach() on an object of class std::thread in C++0x before that object gets out of scope. If you ...
5
votes
3answers
1k views
Designing a thread-safe copyable class
The straightforward way to make a class threadsafe is to add a mutex attribute and lock the mutex in the accessor methods
class cMyClass {
boost::mutex myMutex;
cSomeClass A;
public:
cSomeClass ...
2
votes
2answers
5k views
How can I achieve something similar to a semaphore using boost in c++?
I noticed that boost does not seem to support semaphores. What's the easiest way to achieve a similar effect?
1
vote
1answer
1k views
Can't link against Boost.Thread 1.46.1 with MinGW 4.5.2
I've built boost using:
bjam --toolset=gcc --with-thread stage
Whenever I'm trying to actually use Boost.Thread I'm getting undefined references although I link against it. It doesn't happen with ...
0
votes
3answers
634 views
boost::thread data structure sizes on the ridiculous side?
Compiler: clang++ x86-64 on linux.
It has been a while since I have written any intricate low level system code, and I ussualy program against the system primitives (windows and pthreads/posix). So, ...
11
votes
2answers
2k views
Is it expected that use of boost::thread_specific_ptr<>::get() be slow? Any work arounds?
I'm currently profiling an application with performance problems using Valgrind's "Callgrind". In looking at the profiling data, it appears that a good 25% of processing time is being spent inside of ...
14
votes
4answers
1k views
Multiple mutex locking strategies and why libraries don't use address comparison
There is a widely known way of locking multiple locks, which relies on choosing fixed linear ordering and aquiring locks according to this ordering.
That was proposed, for example, in the answer for ...
13
votes
1answer
453 views
false sharing in boost::detail::spinlock_pool?
I came across this SO question and reading it over eventually led me to look at boost::detail::spinlock_pool.
The purpose of boost::detail::spinlock_pool is to reduce potential contention for a ...
9
votes
3answers
10k views
(simple) boost thread_group question
I'm trying to write a fairly simple threaded application, but am new to boost's thread library. A simple test program I'm working on is:
#include <iostream>
#include <boost/thread.hpp>
...
6
votes
3answers
9k views
Boost thread error: undefined reference
#include <boost/thread/thread.hpp>
#include <iostream>
void hello()
{
std::cout <<
"Hello world, I'm a thread!"
<< std::endl;
}
int main(int argc, char* argv[])
{
...
6
votes
2answers
2k views
Boost Thread Cancelling
Can you cancel a Boost Thread as you would a pthread?
I'm writing a simple watchdog to terminate worker threads if they crash and there doesn't seem to be a way to simply cancel a thread in the Boost ...
12
votes
2answers
8k views
Boost.Thread Linking - boost_thread vs. boost_thread-mt
It's not clear to me what linking options exist for the Boost.Thread 1.34.1 library. I'm on Ubuntu 8.04 and I've found that when using either boost_thread or boost_thread-mt during linking both ...
10
votes
5answers
4k views
C++ Thread question - setting a value to indicate the thread has finished
Is the following safe?
I am new to threading and I want to delegate a time consuming process to a separate thread in my C++ program.
Using the boost libraries I have written code something like this:
...
9
votes
1answer
2k views
When using boost::thread::interrupt(), do you *need* to catch the thread_interrupted exception?
I've got several long running boost threads that I want to be able to shut down by interrupting them. All of the documentation I can find says that you can catch the thread_interrupted exception, but ...
6
votes
4answers
2k views
tr1::hash for boost::thread::id?
I started to use the unordered_set class from the tr1 namespace to speed-up access against the plain (tree-based) STL map. However, I wanted to store references to threads ID in boost ...
5
votes
1answer
697 views
Is a boost::thread automatically removed from a boost::thread_group when it terminates?
(This question, though similar, didn't really answer my question.)
I've had problems with my own "thread group" implementation, and being no closer to solving or even identifying the issue, I'm ...
3
votes
2answers
3k views
CMake and Boost
I've searched and found out that a lot of people have the same problem, but no solution exists.
I'm using CMake to generate Makefiles for MinGW and when compiling I'm getting an error:
...
9
votes
2answers
4k views
Intel TBB vs Boost
I my new application i have flexibility to decide the use of library for multi-threading. So far i was using pthread. Now want to explore cross platform library. I zero in on TBB and Boost. i didn't ...
8
votes
2answers
19k views
What does boost::thread sleep() do?
I am currently working on a small wrapper class for boost thread but I dont really get how the sleep function works, this is what I have got so far:
BaseThread::BaseThread(){
thread = ...
7
votes
2answers
1k views
How to use boost::bind with non-copyable params, for example boost::promise?
Some C++ objects have no copy constructor, but have move constructor.
For example, boost::promise.
How can I bind those objects using their move constructors ?
#include <boost/thread.hpp>
void ...
4
votes
1answer
555 views
Boost 1.48.0 upgrade_to_unique_lock on Linux: Has something changed since 1.47 or I do something wrong?
I have a small cpp source and h source files with some class. It uses shared mutexes and shared locks. It compiles on windows with no errors with boost 1.48.0. It also compiled on linux (with boost ...
3
votes
2answers
933 views
Boost synchronization
I have NUM_THREADS threads, with the following codes in my thread:
/*
Calculate some_value;
*/
//Critical section to accummulate all thresholds
{
boost::mutex::scoped_lock lock(write_mutex);
...
3
votes
5answers
599 views
How to implement a timed wait around a blocking call?
So, the situation is this. I've got a C++ library that is doing some interprocess communication, with a wait() function that blocks and waits for an incoming message. The difficulty is that I need a ...
2
votes
1answer
1k views
boost asio asynchronously waiting on a condition variable
Is it possible to perform an asynchronous wait (read : non-blocking) on a conditional variable in boost::asio ? if it isn't directly supported any hints on implementing it would be appreciated.
I ...
1
vote
1answer
813 views
boost::condition_variable.timed_wait return immediately
I'm working on a little threading library and have run into a problem. boost::condition_variable.wait() works perfectly, however boost::condition_variable.timed_wait() returns immediately, it doesn't ...
0
votes
0answers
113 views
performance of boost::threads notify_one vs notify_all
I have an implementation of Semaphore to manage a shared resource using boost::threads. My implementation of the Semaphore is as shown below.
void releaseResource()
{
...
0
votes
1answer
319 views
boost thread and process cleanup on windows
In my program I have a static object that creates a boost::thread. The thread is supposed to run until program termination, but it shouldn't be terminated in random state, so I implemented controled ...
7
votes
2answers
181 views
Breaking changes in Boost.Thread 3.0.0
In the release notes of version 1.50.0 of the Boost libraries I noted two breaking changes (see here):
#6266 Breaking change: thread destructor should call terminate if joinable.
#6269 ...
7
votes
5answers
2k views
BOOST: recursive shared_mutex?
Seems that Boost's shared_mutex is non recursive.. Is there anyway around this? (without re implementing the whole stuff)
5
votes
1answer
307 views
Debug boost::thread application, high false positive rate
I have programmed a boost::thread application, where I might have some race conditions. I want to debug this program. Therefore I used the following valgrind tools:
halgrind
drd
unfortunately they ...
4
votes
3answers
333 views
Why might this thread management pattern result in a deadlock?
I'm using a common base class has_threads to manage any type that should be allowed to instantiate a boost::thread.
Instances of has_threads each own a set of threads (to support waitAll and ...
3
votes
1answer
950 views
undefined reference to `boost::chrono::system_clock::now()' - Boost, and cpp-netlib
I come here to ask for a fix to a situation that has been frustrating me. A lot.
First of all, I'm on Windows, I use MinGW as a compiler (C++).
I've been having some problems with getting a program ...
3
votes
3answers
3k views
Compiling C++ source file using Boost.Thread
I am trying to learn how to use the C++ Boost.Thread library. I have installed the Boost libraries on my Ubuntu 11.10 system. I am following the book "The Boost C++ Libraries" by Schaling - ...
3
votes
2answers
590 views
Boost Thread Specific Storage Question (boost/thread/tss.hpp)
The boost threading library has an abstraction for thread specific (local) storage. I have skimmed over the source code and it seems that the TSS functionality can be used in an application with any ...
3
votes
4answers
3k views
Getting return value from a boost::threaded member function?
I have a worker class like the one below:
class Worker{
public:
int Do(){
int ret = 100;
// do stuff
return ret;
}
}
It's intended to be executed with boost::thread and boost::bind, ...
3
votes
2answers
2k views
C++ boost::thread and automatically locking containers
Is there a way to automatically lock an STL container on access, without having to lock and release around it?
2
votes
1answer
142 views
Is there a bug in the boost asio HTTP Server 3 example or boost bug?
boost library version 1.53
Debian Linux 6.0 ( Linux 2.6.32-5-amd64 on x86_64 )
It is hard to test own software when valgrind log contains lots of warnings.
So with no changes I built the HTTP server3 ...
2
votes
1answer
647 views
boost::shared_mutex multiple-reader / single-writer mutex
I am trying to use boost::shared_mutex to implement a multiple-reader / single-writer mutex. My question is fairly simple, is it possible for a thread to gain reader access to a shared_mutex, when ...
2
votes
3answers
1k views
boost::thread_resource_error when more than 32705 threads
I'm implementing a message passing algorithm. The messages propagate through the nodes of the graph, blocking until they have have received enough information (from other neighbours) to send a ...

