4
votes
3answers
122 views
java.util.concurrent vs. Boost Threads library
Hi,
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 …
0
votes
2answers
43 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::thr …
0
votes
2answers
100 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?
0
votes
1answer
78 views
Memory leak caused by a wrong usage of scoped_lock ?
I have a memory leak, and I guess it's caused by a wrong usage of scoped_lock (Boost). I however don't manage to find the exact problem, and I do believe that the way the code has …
3
votes
5answers
191 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 s …
2
votes
3answers
671 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 …
0
votes
2answers
94 views
boost microsec_time_clock.hpp warning C4244
Hi. I'm new in using boost and have a problem. I need shared_mutex function in my project. So I've done
#include "boost/thread/shared_mutex.hpp"
And compiled my project. My MSVC …
3
votes
2answers
445 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);
...
r …
0
votes
1answer
205 views
boost.thread dead-lock and self-deletion
I am using boost::thread_group to create(using
thread_group::create_thread()) and dispatch threads. In order to limit
the max thread numbers, at the end of each thread, I remove …
7
votes
6answers
964 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 …
0
votes
2answers
236 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 <boo …
1
vote
1answer
158 views
Using Boost.Thread headers with MSVC Language Extensions disabled
I just discovered that when Language Extensions are disabled in MSVC, you get this error if you try to include boost/thread/thread.hpp:
fatal error C1189: #error : "Threading …
8
votes
5answers
1k 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 …
2
votes
1answer
71 views
Solve boost.thread compilation error with Metrowerks compiler
Hi,
I'm trying to use boost.thread with metrowerks codewarrior 5.5.3; in the header thread.hpp, I get the error that he's redefining thread::thread_data:
class BOOST_THREAD_DECL …
2
votes
2answers
189 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 …
