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

learn more… | top users | synonyms

5
votes
1answer
782 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
1answer
508 views

Upgrade of BOOST 1.35 to 1.43 causes linker error with __pRawDllMain (mfc related)

At work we have an MFC Extension DLL that built fine with 1.35 but when built with 1.43 causes the following error: error LNK2005: __pRawDllMain already defined in ApObs.obj If I activate ...
3
votes
1answer
270 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 ...
2
votes
1answer
61 views

How to get Boost threads installed on Visual C++?

I'm new to multithreading and so, I wanted to start learning Boost threading. However, before I even start, I'd like to know how to get all the files working with Visual C++ 2010. As a beginner, it ...
2
votes
1answer
672 views

How to compile boost_thread with “-pthread” instead of “-mthread”?

I have an os and compile with no -mthread avaliable. Thow I have -pthread. How to compile boost_thread with -pthread instead of -mthread? My current compiler build log: ./b2 -j1 --with-thread ...
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
772 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 ...
2
votes
1answer
171 views

How do I reverse set_value() and 'deactivate' a promise?

I have a total n00b question here on synchronization. I have a 'writer' thread which assigns a different value 'p' to a promise at each iteration. I need 'reader' threads which wait for shared_futures ...
2
votes
0answers
488 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 ...
2
votes
0answers
883 views

Creating a thread Pool for boost threads

There seems to be two approaches to create thread pool for boost threads as boost thread does not provide thread pool directly. The first one is asio::io_service io_service; ...
1
vote
0answers
63 views

undefined reference to `_gmtime32' with boost threads tutorial

I was following this beginner tutorial on boost threads: http://www.codeproject.com/Articles/279053/How-to-get-started-using-Boost-threads Everything was going fine with this sample they provided: ...
1
vote
0answers
59 views

Mixing boost mutexes with native threads?

I have some code that uses native threads. I'd like to modify a tiny fraction of it, but use some boost features. In particular, I'd like to use boost::mutex::scoped_lock() and boost::condition's ...
1
vote
0answers
97 views

just statically linking to libboost_thread triggers access violation crash on startup

I am dealing with the following setup: A C++/CLI dll links to a static lib, which itself links against a static build of libboost_thread. Without linking against libboost_thread the .exe, that loads ...
1
vote
0answers
140 views

Communication between QThread and boost threads

The Gui is in Qt and Api is in boost. The Gui is meant to sit on top of Api. One of the functions of Api is to do network level data management, process data in certain ways and communicate with the ...
1
vote
0answers
112 views

Linking Boost-Python Hello World

I am trying to compile and link boost-python hello world example and I have some linking problems. OS: Ubuntu g++ -fPIC -w Test2.cpp -I ../../../Libs/Python/Python-2.7.3/Include -I ...
1
vote
0answers
100 views

Boost condition timed_wait causing memory-leaks

I am getting a weird memory-leak issue. In the following code, blockCondition is boost::condition where lock is defined as boost::mutex::scoped_lock lock(blockingMutex), where blockingMutex is an ...
1
vote
0answers
202 views

XCode Boost Thread Example Compile Error

Here's my basic boost code #include <iostream> #include <boost/thread.hpp> using namespace boost; using namespace boost::this_thread; using namespace std; // Global function called by ...
1
vote
0answers
171 views

Boost threads unavailable on this platform compile error in eclipse

I am writing a program that have to use the library boost/thread. I install the library with macports on my os X lion. I include in my project under eclipse the library and then I compile my program. ...
1
vote
0answers
207 views

Boost DYN_LNK vs. USE_DLL vs. USE_LIB

What is the difference between the following defines: #define BOOST_REGEX_DYN_LNK #define BOOST_REGEX_USE_DLL #define BOOST_REGEX_USE_LIB (regex was chosen arbitrarily)? Which of them auto-link ...
1
vote
0answers
453 views

boost thread_group with callback

i would like to write a boost::thread_group. Assuming i understood correctly what callback in thread is i would like to apply it as well in my program. I found the following example: (thread_group ...
0
votes
0answers
64 views

Error in building boost library for Android framework on Linux

I am facing a problem while building boost library from latest version 1.53.0. While following all steps as described in most of the tutorials for building boost library on Linux system for Android ...
0
votes
0answers
84 views

Excessive Kernel Launches on Context Creation

Recently I began extending a very boost dependent project to use CUDA for its innermost loop. I thought it would be worth posting here about some odd behaviour I've been seeing though. Simply ...
0
votes
0answers
109 views

c++ -std=c++11 -stdlib=libc++ with boost.thread gives Segmentation fault: 11 on OSX

Tried to run some sample code. But something unexpected occured. I wonder is there any known issus about boost.thread used with libc++ together ? Program compiled with -std=c++11 or no option runs ...
0
votes
0answers
88 views

Multithreaded logger

I am trying to create a logger for multithreaded c++ code using boost. Here's my code: class logger { private: boost::mutex logMtx; public: logger() { } ~logger() { } ...
0
votes
0answers
50 views

NetBeans + Boost + Cygwin_4.x

I'm starting studies with C++ and need to create a project that uses threads. My big problem is that I can't configure the boost library. I always get the same error message: make[2]: Leaving ...
0
votes
0answers
106 views

Boost interprocess offset_ptr and boost threads for data transfer

I am trying to setup a system for writing continuous bytes of information(int) using boost's managed shared memory. This is a stripped down version of my class: class PACKET_INFO { private: ...
0
votes
0answers
124 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
0answers
86 views

Boost thread run-time error in Win32 DLL project

I'm working with a C++ DLL project. I tried to use simple boost thread in there. here is the source-code. this run time exception at uploadThread = boost::thread(uploadFileThread); line. Any idea? ...
0
votes
0answers
493 views

boost threadpool using boost::asio

I am trying to create boost threadpool using boost asio with a work queue. But I am stuck at one point, I need a monitoring function which should keep running and keep track of queue. I am not sure ...
0
votes
0answers
111 views

Skype DirectShow Filter, Access Violation

Edit: This had to do with not closing a previous thread properly (Skype loads the filter dll multiple times). Otherwise, it appears to work. I'm building a virtual camera filter to be used in ...
0
votes
0answers
155 views

Mac Programming with Boost::thread not Building

I'm new at programming with Mac and I'm trying to use Boost::thread for threading. My project builds on Windows but it is not building for me on my Mac. I'm also kinda new with XCode too and we are ...
0
votes
0answers
95 views

Lost in threads - how can I extend this example correctly?

I am adapting this example here http://pastebin.com/sTFQ8NR2 to check, if a message has taken too long to receive. read_complete is called, when read_start has finished. However, I have to check, if ...
0
votes
0answers
266 views

boost::shared_future: Read value multiple times

I want to use futures in a multithreaded C++ application. The value associated to a certain promise should be read by more than one thread. I though boost::shared_future is meant to be used for that, ...
0
votes
0answers
136 views

boost::timed_mutex: guarantee of acquiring the lock, when other thread unlocks in-between?

I have two threads which are acquiring a boost::timed_mutex protecting manipulation of common data. boost::timed_mutex mx; // thread A - running always, should execute as fast as possible while(1){ ...
0
votes
0answers
81 views

why does boost::this_thread::get_id() fail the for loop?

#include <boost/thread/thread.hpp> #include <iostream> void wait(int seconds) { boost::this_thread::sleep(boost::posix_time::seconds(seconds)); } boost::mutex mutex; void thread() { ...
0
votes
0answers
175 views

OpenCv Threading linux

I have wrote a program in which I use some of OpenCv functions. In program I am also using 2 threads. Both of this threads are using the same variable "diff". To protect it I put it in mutex.look(), ...
0
votes
0answers
79 views

Producer Accessing GUI outside GUI thread using service Pattern

My Producer(which is running on a different thread) needs access to QDesktopWidget, some QWidget, it also needs to work with QPixmap. So I designing the polling like this. Producer, Consumer, ...
0
votes
0answers
209 views

QWidget: "Widgets must be created in the GUI

I am using boost::thread with Qt. and I am not creating any Widget from non-gui thread. This is My code. int main(int argc, char *argv[]){ QApplication a(argc, argv); MainWindow w; ...
0
votes
0answers
222 views

linker error using qmake with boost thread in windows MSVC

I am using QtCreator on Windows with boost library. right now I am stuck with linking boost threading library against my Application. In my C:\boost_1_47_0\bin.v2\libs\thread\build directory I see ...
0
votes
0answers
227 views

multiple objects with boost acceptor in each using same port

I was wondering if I had multiple objects which contains a boost acceptor which I wanted to bind to the same port how would I go about it ? I cannot use a global acceptor as it is not threadsafe.So ...
0
votes
0answers
179 views

Gstreamer noticeable seek gap on windows

I have written a demo program to perform seek . Here is the code #define BOOST_ALL_NO_LIB #include <iostream> #include <gst/gst.h> #include <glib/gmain.h> #include ...
0
votes
0answers
466 views

Segmentation fault using boost::thread

I've written an application using threads from boost::thread. It compiles and works fine on my local machine. Problem occurs on the one of the servers. I've send main.cpp file and compiled it the same ...
0
votes
0answers
131 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
0answers
231 views

boost: linker(error C1001) error when using boost thread

I am writing a program that use boost::thread like below class RPCClientManagment { boost::thread *pThread_; void RunSendRequestStatus() { ...
0
votes
0answers
355 views

Threadpool in a Server - boost

I am trying to create a server that accepts connection and a thread handles the request, and the main thread goes back to listening. I am planning on using thread pool because handling is very ...
0
votes
0answers
184 views

Linking recursive template instantiation with boost::thread

I hit into problem when I tried to link following code: test.cpp: #include "Singleton.h" #include "SingletonManager.h" #include <boost/thread/thread.hpp> #include ...
0
votes
0answers
174 views

How to find out how much CPU time was spent by boost Thread and all threads that thread has created?

So I create simple boost::thread it can create new threads that can create new threads etc. I want to be capable to get how much CPU time was given to thread (and threads it has created) having ...
0
votes
0answers
362 views

Building boost_thread with stlport using bjam

I am trying to build Boost thread from boost_1_38_0 using stl port. I have modified the user-config.jam as follows using stlport : 5.1.0 : C:/STLPORT_PATH/STLport-5.1.0/stlport ...
0
votes
0answers
371 views

boost::thread assertion error

I'm trying to create a simple test program using boost::thread, but I get a runtime assertion error. Here is the code: #include <iostream> #include <boost/thread.hpp> void hello (void) ...
-1
votes
0answers
59 views

Boost Thread - big RAM usage?

I got one question. My application eats 10MB ram per thread, where boss thread uses only 300kb. Is there way to reduce ram usage of boost new threads ? Because my game server need ~~ 300 threads ...

1 2