Tagged Questions

Boost.Thread enables the use of multiple threads of execution with shared data in portable C++ code.

learn more… | top users | synonyms

10
votes
5answers
3k 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
2answers
561 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 ...
9
votes
5answers
2k 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.
9
votes
8answers
5k views

Kill a blocked Boost::Thread

I am writing an application which blocks on input from two istreams. Reading from either istream is a synchronous (blocking) call, so, I decided to create two Boost::threads to do the reading. ...
8
votes
3answers
188 views

Synchronizing access to a return value

Consider the following C++ member function: size_t size() const { boost::lock_guard<boost::mutex> lock(m_mutex); return m_size; } The intent here is not to synchronize access to ...
8
votes
6answers
2k views

java.util.concurrent vs. Boost Threads library

How does the Boost Thread libraries compare against the java.util.concurrent libraries? Performance is critical and so I would prefer to stay with C++ (although Java is a lot faster these days). ...
8
votes
6answers
2k views

On which platforms is thread local storage limited and how much is available?

I was recently made aware that thread local storage is limited on some platforms. For example, the docs for the C++ library boost::thread read: "Note: There is an implementation specific limit to the ...
7
votes
1answer
213 views

Boost thread and UPX compression == not valid win32 application?

When I just declare boost::thread t1, t2; in my program and then compress .exe file with UPX, the compression succeeds. But when I try to launch the compressed exe, Windows tells me that it's ...
7
votes
3answers
356 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 ...
7
votes
1answer
276 views

Problems regarding Boost::Python and Boost::Threads

Me and a friend are developing an application which uses Boost::Python. I have defined an interface in C++ (well a pure virtual class), exposed through Boost::Python to the users, who have to inherit ...
7
votes
2answers
3k 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 ...
7
votes
2answers
769 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 ...
7
votes
2answers
3k views

Threads in C, C++, C++0x, pthread and boost

A question about threads in C/C++... C++0x syntax #include <thread> void dummy() {} int main(int, char*[]) { std::thread x(dummy); std::thread y(dummy); ... return 0; } How ...
6
votes
1answer
103 views

Valgrind reports 'possibly lost' memory when working with Boost threads

I have a program that runs some action in a separate therad, then joins on the thread, such as this one: #include <boost/thread.hpp> #include <iostream> using namespace std; void f() { ...
6
votes
3answers
143 views

How can I return a scoped lock?

Consider, say, a collection of account balances. And then you have a complex function that needs to check the balances of a few different accounts and then adjust the balances of a few different ...
6
votes
3answers
208 views

“Compiler threading support is not turned on.”

Normally I can google my way around and find solutions, but not this time. I'm using 64 bit Linux Ubuntu 11.04 to compile a 32 bit windows application. I'm using i586-mingw32msvc-gcc to compile my ...
6
votes
1answer
405 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
2answers
3k 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!
6
votes
4answers
818 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
120 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 ...
5
votes
1answer
289 views

boost mutex throwing (odd?) exception

I am using a blocking queue example I got from this website, thinking it was pretty nice. This blocking queue is using boost::mutex. It is sometime throwing an exception : terminate called after ...
5
votes
2answers
171 views

C++, Linux: error: conversion from ‘boost::unique_future<void>’ to non-scalar type ‘boost::shared_future<void>’ requested. how to get around it?

I try to work with boost thread futures. So as shown here we can get shared future from packaged task. So I try such function on linux: template <class task_return_t> void pool_item( ...
5
votes
1answer
254 views

Multithreading with C++ API

i am trying to parallel my program using OpenMP and sometimes i feels that i am reaching a dead end. I would like to share variables in a function member that i defined (and initialized) in the ...
5
votes
1answer
378 views

Boost Threads with CLR

Using Visual Studio 2008 and Boost Libraries 1.46.1 I want to compile and link the following with the /CLR flag: #include <boost/thread/thread.hpp> void run() {} int main(int argc, char ...
5
votes
3answers
169 views

boost::thread program crashes on throwing std::exception

I am puzzled as to why this program crashes. This is the entire program #include<fstream> #include<string> #include<iostream> #include <exception> #include ...
5
votes
3answers
537 views

c++ boost::thread execute code on main thread?

Is it possible, after calling a boost::thread running some instructions, to come back to main thread ? My code is based around proactor pattern, however a certain function may take some time, so in ...
5
votes
10answers
1k 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 ...
5
votes
1answer
528 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
1answer
891 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?
5
votes
3answers
5k 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 ...
5
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
6answers
2k views

Book for c++ threading?

Is there any good book for c++ threading which uses boost threads. Please post one book per answer
4
votes
3answers
145 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 ...
4
votes
1answer
172 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 ...
4
votes
1answer
160 views

Is using shared_ptr and weak_ptr to manage lifetime of std::function safe?

I've created a wrapper around boost::asio::io_service to handle asynchronous tasks on the GUI thread of an OpenGL application. Tasks might be created from other threads so boost::asio seems ideal ...
4
votes
2answers
91 views

Use boost::mutex with MFC threads (AfxBeginThread)?

Can you use the boost::mutex libraries to protect a critical section of code when you are not using boost::thread but instead using the MFC threading capability via AfxBeginThread? If so, are there ...
4
votes
4answers
159 views

boost thread destroys polymorphism

duplicate of: "pure virtual method called" when implementing a boost::thread wrapper interface I am trying to create a more object oriented version of the threads using boost threads. So I ...
4
votes
1answer
260 views

Boost Thread - How to acknowledge interrupt

I have blocking task which will be performed by find_the_question() function. However, I do not want thread executing this function take more than 10 seconds. So in case it takes more than 10 seconds, ...
4
votes
1answer
775 views

boost condition variable issue

The following minimal code sample of a larger program sends commands from client threads to an asio io_service object. The io_service object (in the Ios class) is being run with one thread. When the ...
4
votes
3answers
120 views

Can mutex implementations be interchanged (independently of the thread implementation)

Do all mutex implementations ultimately call the same basic system/hardware calls - meaning that they can be interchanged? Specifically, if I'm using __gnu_parallel algorithms (that uses openmp) and ...
4
votes
1answer
272 views

Why is destructor of boost::thread detaching joinable thread instead of calling terminate() as standard suggests?

According to the draft C++0x standard, this code: void simplethread() { boost::thread t(someLongRunningFunction); // Commented out detach - terminate() expected. // t.detach(); } ... ...
4
votes
3answers
378 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 ...
4
votes
1answer
211 views

assignment operator for classes having a non copyable boost::mutex

I am reading here this old Boost Thread FAQ where there is a guideline to implement copy-construction and assignment operator for classes having a boost::mutexnon-copyable object as member. I am ...
4
votes
2answers
600 views

How to add boost thread library to an iPhone project?

I am trying to port an existing project to iPhone which needs Boost.Thread library, the project compiles without error but there are link errors: "boost::thread::start_thread()", referenced from: ...
4
votes
2answers
246 views

Inner class and initialisation

I have a class defined like this: This is not all complete and probably won't compile. class Server { public: Server(); ~Server(); class Worker { public: Worker(Server& server) : ...
4
votes
2answers
2k 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 ...
4
votes
2answers
2k views

shared_ptr Assertion px != 0 failed

I have a fairly complex multi threaded application (server) that from time to time will crash due to an assert: /usr/include/boost/smart_ptr/shared_ptr.hpp:418: T* boost::shared_ptr< ...
4
votes
1answer
587 views

boost::threads - how to do graceful shutdown?

I'm trying to improve the portability of a C++ app by using boost:threads instead of our own wrapper over Win32 threads, and the issue of graceful thread termination (again) rears its ugly head. On ...
4
votes
5answers
275 views

Parallel version of loop not faster than serial version

I'm writing a program in C++ to perform a simulation of particular system. For each timestep, the biggest part of the execution is taking up by a single loop. Fortunately this is embarassingly ...
4
votes
1answer
5k views

Static Compile of Thread Example

I compiled the Boost C++ libraries as follows: bjam install variant=release link=static threading=multi runtime-link=static No errors. Then I compiled the following source: #include ...

1 2 3 4 5 6