Boost.Thread enables the use of multiple threads of execution with shared data in portable C++ code.
0
votes
1answer
78 views
Is there a way to have a boost thread per object of a class?
In my code I want to create a bunch of objects of a class and then give each object a separate thread so objects can all carry out actions at the same time as each other.
for (i = 0; i < ...
0
votes
1answer
242 views
program with boost thread 1.51 doesn't build
I am trying to compile a program using boost thread with the latest version. I am using
gcc version 4.1.2 20080704 (Red Hat 4.1.2-52)
With the 1.50 I had an issue saying that the reference to ...
1
vote
1answer
321 views
Boost thread Overhead
I found that boost thread overhead has three order of magnitude timing overhead in the following simple program. Is there anyway to reduce this overhead and speedup the fooThread() call ?
#include ...
0
votes
2answers
193 views
boost::asio::async_write from outside class
If programming a tcp server using boost.asio using the example of the echo server , i have modified some of its codes to meet my requirements where i want to process the incoming data and send back ...
0
votes
3answers
162 views
poor performance with boost conditional mutex
I am new to using conditional_variables so I could easily be doing something stupid here but I am getting some odd performance when I use boost threads versus just calling the function directly. If ...
1
vote
0answers
191 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 ...
2
votes
1answer
116 views
Can't get Boost Thread pool on dual core ios device(iPhone4s, iPad2, etc)
In my IOS app, i use a thread pool(Boost Thread) to download resource images.
All build(including OTA build) except appstore build works fine.
After investigating, the appstore build can't get Boost ...
0
votes
2answers
247 views
Boost: Two worker threads, sleep the main thread until they both finish
I have written a program using Boost threads. I have allocated two buffers (one for each of the worker threads) to store some info they are to process. They sit and wait for something to appear on the ...
0
votes
1answer
151 views
C++ ReadConsoleInput not working with boost::thread
I've created to create a listener class that will call methods such as on_left_mouse_released on a controller object. It works fine, and now I am trying to have it run in another thread using ...
1
vote
1answer
235 views
boost::asio multiple outgoing SSL connections using worker threads
I am in the process of better learning boost::asio, in the recent past I already used it for some basic server applications. So I guess I know (a bit of) the basics.
But today I have a problem that I ...
0
votes
2answers
283 views
Using Boost mutex in two different classes
i am using boost mutex in MessageQueue class as a private member in the following method
void MessageQueue::Dequeuee()
{
Request rq(messageWareHouse.front().reqID,messageWareHouse.front().seq,
...
0
votes
0answers
165 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(), ...
1
vote
3answers
421 views
Multi-threaded C++ Message Passing
I am tasked to modify a synchronous C program so that it can run in parallel. The goal is to have it be as portable as possible as it is an open source program that many people use. Because of this, I ...
0
votes
1answer
129 views
Creating a 'synchronization point' between threads
I have a couple of boost::threads which all execute the same function.
void foo(){
//Lock Mutex
//Do some stuffs, part 1
//Unlock Mutex
//Do some stuffs, part 2
//Lock Mutex
...
0
votes
1answer
114 views
boost-threads: How can I pass a scoped_lock to a callee?
I'm new to the boost threads library. I have a situation where I acquire a scoped_lock in one function and need to wait on it in a callee.
The code is on the lines of:
class HavingMutex
{
public:
...
4
votes
2answers
233 views
Behavior of condition_variable_any when used with a recursive_mutex?
When using condition_variable_any with a recursive_mutex, will the recursive_mutex be generally acquirable from other threads while condition_variable_any::wait is waiting? I'm interested in both ...
1
vote
1answer
142 views
waiting on a condition variable in a helper function that's called from the function that acquires the lock
I'm new to the boost threads library.
I have a situation where I acquire a scoped_lock in one function and need to wait on it in a callee.
The code is on the lines of:
class HavingMutex
{
public:
...
0
votes
1answer
170 views
Boost.Thread timed wait
What happens to thread run under Windows OS, when the timeout occurs using boost::thread::timed_join, and the waiting thread finishes? Does the thread remain or it finishes along with the process?
1
vote
3answers
529 views
Compilation error when including boost/thread.cpp
I have the following code using Boost ASIO to setup a TCP client. Here is my code adapted from the Boost doc's chat example.
class AsioCommunicationService {
...
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
202 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;
...
2
votes
1answer
294 views
Why can't I interrupt this particular boost::thread?
I have two tests for interrupting a boost::thread. One works, the other doesn't. Can anyone tell me why?
Working:
#include <iostream>
#include <string>
#include <boost/thread.hpp>
...
0
votes
1answer
528 views
Boost 1.50 CMake 2.8 and Ogre 1.8 - win64 - dynamic linking
I've built the dynamic boost libraries required by the Ogre 3d engine (thread and date_time). My boost directory is in C:\boost , the lib is in C:\boost\lib and the include in C:\boost(\boost) as ...
1
vote
1answer
432 views
boost::thread producer consumer
I am new toboost::thread I am making a producer consumer with a Monitor. This is how I've coded it so far.
//{ Declarations in header
private:
boost::condition_variable _condition;
...
0
votes
2answers
287 views
how to make a threadpool with boost::thread
boost::thread is not-a-thread, a new thread is created when the ftor passed to it is called and thread exits when ftor returns.
We use threadpool to minimize thread creation and destruction cost. ...
2
votes
1answer
294 views
Boost's thread group on Xcode
I was trying to run a small test program on Xcode (4.2) using C++ after encountering error in my project.
#include <boost/thread.hpp>
#include <boost/bind.hpp>
int main (int argc, ...
6
votes
2answers
448 views
Creating boost::thread with an std::shared_ptr object instance
I have the following two code segments. The first block compiles and works as expected. However the second block does not compile.
My question is, given the code below what is the correct syntax ...
0
votes
0answers
210 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
1answer
243 views
no matching function for call to boost::condition_variable::wait
This is my scenario
boost::condition_variable _condition;
boost::unique_lock<boost::mutex> lock(_mutex);
boost::detail::atomic_count _count;
.........
_condition.wait(&lock, ...
0
votes
0answers
222 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 ...
3
votes
1answer
946 views
undefined reference to `boost::chrono::system_clock::now()' - Boost, and cpp-netlib
I come here to ask for a fix to a situation that has been frustrating me. A lot.
First of all, I'm on Windows, I use MinGW as a compiler (C++).
I've been having some problems with getting a program ...
0
votes
2answers
149 views
Need to mutex-protect (atomic) assignment sought by condition variable?
I understand how to use condition variables (crummy name for this construct, IMO, as the cv object neither is a variable nor indicates a condition). So I have a pair of threads, canonically set up ...
0
votes
0answers
169 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 ...
1
vote
2answers
428 views
Creating a separate boost thread for endpoint.listen() in a multithreaded program using websocketpp library
I am trying to integrate a websocketpp server into a multithreaded project. Everything works fine in a single thread approach, but I encountered a problem when creating a separate boost::thread for ...
0
votes
2answers
175 views
Synchonizing sleep and QTimer
I have two classes: class A and class B.
In class A, I have a private slot Refresh which is called using QTimer every two seconds and helps in updating values in QTableView.
Class B is defined by ...
0
votes
1answer
174 views
Strange memory leak in C++ with Eigen and boost::thread
I have two threads running in a program.
They are created using boost::thread.
The two threads do not share anything in terms of memory. No data-structures or objects are shared between them.
Now ...
0
votes
1answer
193 views
Boost Threads Producer/Consumer unexpected behavior
I am currently writing an application(using boost) that will have one producer grabbing frames and one consumer reading frames.I added a sleep statement in the producer to simulate the time to grab a ...
0
votes
2answers
190 views
boost: thread not executing an handler posted after the reception of a signal
I am getting acquainted with boost thread and signals. I am thus implementing this simple example, I only post the cpp file of an example class implementing a thread capable of executing a method when ...
7
votes
2answers
179 views
Breaking changes in Boost.Thread 3.0.0
In the release notes of version 1.50.0 of the Boost libraries I noted two breaking changes (see here):
#6266 Breaking change: thread destructor should call terminate if joinable.
#6269 ...
3
votes
1answer
186 views
Boost get multiple locks for the same thread
I have a basic sample which needs review (C++).
Let's say I have a function PublicFunc(), and another one called PrivateFunc(). I'd like to synchronize them carefully. But PrivateFunc can sometimes ...
1
vote
2answers
290 views
Avoid race condition when incrementing a counter
I have posted on this topic before, but as yet I have not had much luck. I put it down down to a bad question on my part. This time I have made a short compilable example that displays the bad ...
1
vote
0answers
165 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. ...
0
votes
1answer
162 views
Using boost::bind with a templated object
I want to pass to boost::bind a templated object, but g++ always yield an error. I have found how to pass a templated function, but is it possible to pass a templated object?.
Here's the code.
...
0
votes
0answers
430 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 ...
1
vote
2answers
96 views
Call method right after blocking call
I'm using a third party library which has a blocking function, that is, it won't return until it's done; I can set a timeout for that call.
Problem is, that function puts the library in a certain ...
0
votes
2answers
234 views
Boost.asio in Visual C++ Form project
I have successfully implemented a network application in visual CLR project using boost.asio. but when i tried to use the same code in windows form project with Common "Language Runtime Support ...
0
votes
1answer
404 views
Running a boost thread as a Daemon
Is it possible to create a boost::thread and run it in the background (as a daemon)?
I am trying to the following but my thread dies when main exits.
/*
* Create a simple function which writes to ...
0
votes
1answer
138 views
Pantheios and boost::thread
I am having some trouble using the pantheios logging library with boost::threads. It seems that if I use any pantheios logging before creating the thread, I will get a segfault.
For example, the ...
0
votes
1answer
247 views
boost thread link fails in Netbeans 7.1 debugging/testing session
I am developing an app on Netbeans, while I can run it. I can not debug or reun the test files. When I try to do so, I get:
./build/Debug/GNU-Linux-x86/tests/TestFiles/f1: error while loading shared ...
0
votes
1answer
343 views
Boost async_read_some not exactly asynchronous
This is my server code:
socket_.async_read_some(boost::asio::buffer(data_read.data(), Message::header_length),
boost::bind(&TcpConnection::handle_read_header, shared_from_this(),
...

