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

learn more… | top users | synonyms

1
vote
4answers
300 views

sleeping a thread in the middle of execution

What happens when a thread is put to sleep by other thread, possible by main thread, in the middle of its execution? assuming I've a function Producer. What if Consumer sleep()s the Producer in the ...
12
votes
1answer
449 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 ...
0
votes
1answer
267 views

Combining Boost::Threads And OpenMP

I'm no expert in parallel programming. But I'm curious if I can use them both them in the same application. Is any benefit? It can be done? None seem to ask this question. There is as similar question ...
0
votes
1answer
1k views

Do we need multiple io_service per thread for threaded boost::asio server with a single acceptor

I am not much experienced in boost::asio. I've some pretty basic questions. Do I need to have a different io_service, and a different socket under a different thread but one single acceptor, to ...
0
votes
1answer
116 views

Boost thread does no sleep properly, Am I missing something?

Consider following example, On windows 7 icore7 laptop(VC++2010) and ubuntu 64bit 12.04 lte gcc 4.6.3 #include <iostream> #include <boost/date_time/posix_time/posix_time.hpp> #include ...
0
votes
1answer
207 views

boost_thread not linking on NaCl

I receive this error when linking -lboost_thread into my executable on google Native Client (pepper_19): nacl_sdk/pepper_19/toolchain/mac_x86_glibc/x86_64-nacl/usr/lib/libboost_thread.a: could not ...
1
vote
1answer
33 views

Error including boost libs in VS project

I'm trying to compile a VS2008 C++ project on a 64bit platform. In this project I use boost threads. I can correctly compile the project on a 32bit platform. On the 64bit platform I downloaded a ...
-1
votes
1answer
119 views

tree sum threaded c++

I have a tree with numbers and a boolean to see if the numbers have been summed this is the code: #include <iostream> #include <string> #include <boost/thread.hpp> #include ...
0
votes
1answer
442 views

Build boost.thread - lib file not found

I am trying to build the boost.thread library for Visual Studio 9.0. I used bjam to build the lib-files: bjam toolset=msvc-9.0 variant=release threading=multi link=shared The compilation succeeded ...
1
vote
2answers
304 views

Error “member function redeclaration not allowed” with boost::thread

I have this problem with boost::thread that i cannot solve. I have a classX.h file: #include <boost/thread/thread.hpp> class classX{ ... void startWork(void); void doWork(void); ...
2
votes
2answers
535 views

how to use boost atomic to remove race condition?

I am trying to use boost::atomic to do multithreading synchronization on linux. But, the result is not consistent. Any help will be appreciated. thanks #include <boost/bind.hpp> #include ...
0
votes
3answers
338 views

Accessing The Callable Object a boost::thread Was Constructed With

I am using Boost 1.49 and MSVC10. If a boost::thread is constructed with a callable object1, and that object has member functions or variables I want to access from outside the context of the thread, ...
0
votes
1answer
207 views

how to compile boost_thread for android NDK?

I have a neeed to create threads and I am preferring to use boost threads! Firstly is this possible for android-ndk ? If so, then I started to include boost_thread sources in my project. I referred ...
0
votes
1answer
899 views

boost failing to obtain lock

I am working on a real-time music application. Working with boost library as a newbie. I implemented a Producer/Consumer relationship with a protected SyncronizedQueue, actually I implemented the ...
0
votes
0answers
126 views

Exception when calling a function on the boost::barrier object from another library

I've a C++ application which loads a DLL and passes a callback. The DLL creates its own thread, does some tasks and passes a pointer to boost::barrier object to the main application through the ...
0
votes
1answer
80 views

Does detached boost::thread cleans up nicely if function that it executes ends nicely

lets say that I detach boost::thread either explicitly or implicitly(destructor does it, unlike in std::thread), and that functions that thread calls is guaranteed not to let any exceptions be ...
1
vote
4answers
603 views

Can't have Boost::mutex as private class member when using with std::deque?

I'm having some trouble with deque and boost::mutex, I've made a simple example that will compile with the error below. The problem is that I want to have a deque of some class which has one or more ...
0
votes
2answers
124 views

boost threads in c++

So I'm modifying a code to be multithreaded, I have read several articles but have not found my answer, I have the Main, Class A, Class B, now I want to know if it's possible to program threads in ...
4
votes
4answers
190 views

BOOST threading : cout behavior

I am new to Boost threading and I am stuck with how output is performed from multiple threads. I have a simple boost::thread counting down from 9 to 1; the main thread waits and then prints ...
3
votes
1answer
538 views

How to delete boost thread object when thread itself terminates?

When threads are added to boost::thread_group like: boost::thread_group my_threads; boost::thread *t = new boost::thread( &someFunc ); my_threads.add_thread(th); all the created boost::thread ...
1
vote
1answer
312 views

How to implement a dynamic thread Boost::Barrier?

Typically a thread barrier (i.e. boost::barrier) is initialized with an integer representing the number of threads that must call boost::barrier::wait - all threads wait at that point until the ...
3
votes
1answer
264 views

boost thread error

I have a program that uses boost threads. The program has start and stop functionality. When the program is started I create a boost thread that does some processing. When the program is stopped I ...
0
votes
4answers
965 views

Safe multi-thread counter increment

For example, I've got a some work that is computed simultaneously by multiple threads. For demonstration purposes the work is performed inside a while loop. In a single iteration each thread ...
4
votes
1answer
300 views

boost::threads based queue algorithm

Assuming there is a std::deque queue of pointers to tasks to be performed, what is the best way to ensure the number of threads running at one time is limited to the number of CPU cores? i.e. After a ...
6
votes
1answer
447 views

boost::threads example and heap corruption message

I'm quite new to boost::threads, I read the documentation and but i'm having some trouble applying it in practice, perhaps you can help? First of all, I have taken the time to write a self contained ...
-2
votes
1answer
203 views

trouble with boost error lock

I can't figure out where is the problem with this simple code, I think that here is the trouble with output to Console maybe deadlock or something, can somebody, please help. #include ...
1
vote
1answer
788 views

Multiprocessor Boost::Thread? All threads running on one processor

I have a embarrassingly parallel problem that I want to execute on multiple processors. I had supposed that boost::thread would automatically send new threads to new processors, but all of them are ...
0
votes
2answers
134 views

Can boost::thread be terminated before its owner class (boost::threadpool or boost::thread_group) started to destroy? [closed]

I have unexpected boost::thread termination during program exit. Threads are created using boost::threadpool object. The boost::threadpool object is aggregated by another object of class Zzz, that ...
1
vote
1answer
370 views

boost::thread yield different results on every run

I am trying to make use of boost::thread to perform "n" similar jobs. Of course, "n" in general could be exorbitantly high and so I want to restrict the number of simultaneously running threads to ...
1
vote
1answer
79 views

'n' boost::thread instances doing 'm' jobs

I am writing an evolution code, where in each generation there are (say) 100 organisms and fitness calculation for each of them is a easily parallelize-able procedure. Now, I do not want to create 100 ...
0
votes
1answer
331 views

Ignore a previous version of boost C++

I have to give a demo on a machine which contains an old version of the C++ boost library. Specifically I need boost::thread, in which I am using the lock member function of the mutex class. ...
2
votes
2answers
1k views

Shared Queue [ C++ ]

I just simply get packets from network, and Enqueue them in one thread and then consume this packets (Dequeue) in an other thread. So i decide to use boost library to make a shared queue based on ...
1
vote
1answer
219 views

C++ boost thread delay

I want to wait 1.5 seconds in a boost thread. Using boost::xtime I can wait an integer number of seconds: // Block on the queue / wait for data for up two seconds. boost::xtime_get(&xt, ...
2
votes
0answers
461 views

valgrind drd reports errors for a simple c++ program w/ boost::thread or pthread

I just copy an example program from boost http://www.boost.org/doc/libs/1_31_0/libs/thread/example/thread_group.cpp #include <boost/thread/thread.hpp> #include <iostream> int ...
6
votes
1answer
537 views

boost::thread_group in C++11?

Is there anything like boost::thread_group in C++11? I'm just trying to port my program from using boost:thread to C++11 threads and wasn't able to find anything equivalent.
0
votes
1answer
1k views

Use of timed_wait from boost?

I am trying to use the timed_wait from boost. Now I am actually not quite sure how to do this. The purpose of the whole thing is to determine it's state. In the code below a function getStatus() is ...
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 ...
0
votes
3answers
496 views

boost::thread compilation error

I am trying to run the following program using boost::thread. #include <boost/thread.hpp> #include <iostream> using namespace std; class test{ public: void hello(int i) { cout ...
0
votes
1answer
212 views

How to create a thread using Boost

I am a newbie to the boost library. Please forgive me if the answer is obvious. Here is my code. #include <iostream> #include <boost/thread.hpp> using namespace std; void task1(void) { ...
0
votes
4answers
174 views

Looking for ideas on how to roll my own multi-threaded task scheduler in C++

I'm relatively new to C++, but not new to programming. I have written a similar DVR scheduler in python (where I used APScheduler), but for various reasons I would like to migrate to a C++ version of ...
1
vote
3answers
517 views

Interrupting boost thread

I would like to be able to interrupt a thread as follows. void mainThread(char* cmd) { if (!strcmp(cmd, "start")) boost::thread thrd(sender); //start thread if (!strcmp(cmd, ...
0
votes
3answers
115 views

Dividing work among threads

I know there are similar questions, but none of them answered my question. I'm trying to divide a big loop(2^60) into several smaller loops distributed among threads. The range of loop can vary from ...
2
votes
1answer
245 views

Anomalous acceleration noted when using C++2011 threads instead of OpenMP in matrix multiplication

Writing a demonstration code (matrix multiplication) for my students in order to show that one MUST use the cache correctly even when using parallel code, I have found that using C++2011 threads ( via ...
2
votes
1answer
724 views

program.exe: Native' has exited with code 255 (0xff)

I am using boost threads, and everything works perfectly when compiling with /MD but I really prefer compiling with /MT instead The problem I then get is program.exe: Native' has exited with code 255 ...
0
votes
5answers
504 views

Manually releasing boost locks?

For the sake of learning combinatorics of boost::thread I'm implementing a simple barrier (BR) for threads which lock a common mutex (M). However, as far as I get it when going to BR.wait() the locks ...
0
votes
2answers
1k views

Linking boost::thread

I'm trying to learn something with boost libraries, but I get a problem when I try to compile something that includes boost::threads. I get an error during linking, this is the message: ...
2
votes
1answer
1k views

How to sleep with boost::chrono?

Examples of boost::this_thread::sleep() seem to use objects of boost::posix_time::milliseconds. I've tried that and it works, but I am using boost::chrono for checking the system clock etcetera. It ...
4
votes
1answer
2k views

when to detach or join a boost thread?

I have a method which is fired once every 30 seconds aprox. that I need to have in a thread. I have a method that I can call from outside the class. Something like callThreadedMethod() which creates ...
0
votes
2answers
305 views

Boost thread fails BOOST_ASSERT( px != 0 );

I have created a future object, as such: Future.h #ifndef FUTURE_H_ #define FUTURE_H_ #include "../interfaces/IFuture.h" #include <stdio.h> #include <boost/thread.hpp> using namespace ...
0
votes
1answer
143 views

C++ - How do I revive a thread with boost?

SUMMARY: Client is in Teamspeak server with other users. When other users begin speaking, this plugin runs a function setSpeakerPosition() on the user every 500ms until they stop speaking. It should ...

1 3 4 5 6 7 11