New answers tagged boost-thread
1
The PPL and the C++11 concurrency libraries are not really direct substitutes. PPL offers a higher level, task based approach to concurrency and can be both easier to work with and more efficient than managing threads directly using std::thread or similar threading libraries. PPL also includes things like parallel algorithms (parallel_for_each, ...
2
If you use the boost 1.53, then it is a boost bug. A solution is either to patch the boost sources, to wait a new release or to rollback to a previous boost version.
1
boost::thread_group is a convenience class for performing thread management operations on a collection of threads. For example, instead of having to iterate over std::vector<boost::thread>, invoking join() on each thread, the thread_group provides a convenient join_all() member function.
With boost::thread, regardless of it being managed by ...
0
It sounds like you have a producer-consumer style problem. There are various way to implement a solution to this problem, but most folks these days tend to use condition variable based approaches (see this C++11 based example).
There are also a number of design patterns that when implemented can help alleviate your concurrency problem, such as:
Half-Sync ...
0
I implemented a very basic thread pool using C++ and POSIX threads. Details here: http://exceptional-code.blogspot.com/2013/05/a-c-thread-pool-implementation-using.html
Thanks!
0
It sounds as though you've misunderstood select; the purpose of select (or poll, epoll, etc) is not "wait for data" but "wait for one or more events to occur on a series of file descriptors or a timer, or a signal to be raised".
What "responsiveness" is going missing while you're in your select call? You said it's a console app so you're not talking about a ...
0
Boost threads are easy, portable, well documented, and my usual go-to form of concurrency in C++ these days. If you're thinking of having linux builds going, don't rely on any VC features or your move will be very painful (done it the hard way myself before...).
That being said the new STL content is very similar to boost in most regards, so you could use ...
1
But why should it block, as upgrade ownership it's not yet an exclusive ownership?
If someone already has exclusive ownership, then no-one can obtain shared or upgradable ownership; so lock_shared and lock_upgrade will both block in that situation.
And, as noted in the comments, only one thread can have upgradable ownership; so lock_upgrade will also ...
12
You should use
boost::thread thread(boost::ref(S), boost::cref(numbers));
since by default thread copies these arguments.
5
Your SumWorker object S is being copied by the thread constructor therefore its member is never updated.
http://www.boost.org/doc/libs/1_53_0/doc/html/thread/thread_management.html#thread.thread_management.thread.callable_constructor
1
Don't call join on the thread you just created - join specifically waits there in the main thread until the speech_thd terminates, see here: http://pubs.opengroup.org/onlinepubs/7908799/xsh/pthread_join.html
2
m_Thread= new boost::thread(&Function,pParam);
Function is actually a pointer to a function, even though it doesn't look like it. If you declare a function parameter of function type, then it is actually a function pointer; much as function parameters declared as arrays are actually pointers.
So &Function is a pointer to that function pointer, ...
3
boost::mutex is not a copyable or moveable (using boost's move implementation) type, and hence, passing it in that way to the thread will not work, since that constructor makes a copy of the functor to execute on the thread.
In your test case, you would want to use the following
boost::thread tester_thread(boost::ref(functor))
This passes it by reference, ...
1
The semantics of the Boost threading primitives are based on
pthread, so there should be no difference at that level.
Boost wraps them in a C++ class based interface, however, and in
particular, supports RAII implicitly for things like locking the
mutex; if you want to use pthread directly, you'll definitely
want to implement your own variant of scoped lock, ...
1
For more flexibility you can use:
-Lambda functions (C++11): What is a lambda expression in C++11?
threads.create_thread([&b,&e]{printPower(b,e);});
-Functors that store the arguments as const references.
struct PPFunc {
PPFunc(const float& b, const float& e) : mB(b), mE(e) {}
void operator()() { printPower(mB,mE); }
const ...
2
You can't pass arguments to boost::thread_group::create_thread() function, since it gets only one argument. You could use boost::bind:
threads.create_thread(boost::bind(printPower, boost::cref(b), boost::cref(e)));
# ^ to avoid copying, as you wanted
Or, if you don't want to use boost::bind, you could use ...
1
The arguments supplied to the boost::thread constructor are copied. From the linked reference page:
As if thread(boost::bind(f,a1,a2,...)). Consequently, f and each an are copied into internal storage for access by the new thread.
The compiler is complaining that an attempt is made to copy a non-copyable object. As suggested in a comment by Joachim ...
1
Maybe have a look at http://www.boost.org/doc/libs/1_35_0/doc/html/thread/thread_management.html. You can disable thread interruption with the disable_interruption class. I haven't used it myself, but it looks like if you instantiate disable_interruption, interruptions should be disabled until the disable_interruption object goes out of scope.
0
The issue is that when the destructor of IOController call mThread.interrupt() a function elsewere that is using sleep_for throw the exception. this exception is caght in the caught(...) but relly is just boost::thread_interrupted a class non deriving from anything.
The problem now is that thread_interrupted is not caght in the poll method so application is ...
2
Without actually seeing the code, this is mostly conjecture.
From your debug:
#2 0x00007fffe85abb5d in boost::condition_variable::notify_one (this=0x0)
at /usr/include/boost/thread/pthread/condition_variable.hpp:88
It's saying that this (inside the condition variable) is nullptr. It appears that you are calling cv->notify_all() where cv is ...
Top 50 recent answers are included