Tagged Questions
0
votes
0answers
66 views
why does my multithreaded application hang when trying to join? [closed]
I have created an application using boost threads, this application works fine on one machine, however on another it hangs after attempting to join. Here is a rough pseudocode of what is happening:
...
0
votes
1answer
38 views
notify_all causes segmentation fault
I am using boost threads, upon calling notify_all() within the destructor i am seeing a segmentation fault. Here is the stack:
(gdb) where
#0 0x00007ffff752de84 in pthread_mutex_lock ()
from ...
3
votes
1answer
79 views
Different behavior of boost::condition_variable under VC++ and GCC
On my computer, running on Windows 7, the following code, compiled in Visual C++ 2010 with Boost 1.53, outputs
no timeout
elapsed time (ms): 1000
The same code compiled with GCC 4.8 (online link) ...
2
votes
2answers
105 views
Interrupting threads if not joined
I am looking for a way(preferably with boost threads), to interrupt a thread if it has not joined. I start multiple threads, and would like to end any of them that have not finished by 200 ...
0
votes
0answers
77 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()
{
}
...
5
votes
1answer
93 views
Communication b/w two threads over a common datastructure. Design Issue
I currently have two threads a producer and a consumer. The producer is a static methods that inserts data in a Deque type static container and informs the consumer through boost::condition_variable ...
1
vote
0answers
49 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 ...
0
votes
1answer
61 views
Launch method in new thread
I have a vector with pointers of objects and I'm trying to launch object's method in a new thread (method have a parameter).
This is code, which I can't compile:
class CanaSynchDynamic {
...
...
0
votes
4answers
192 views
Can a thread be reused to run variadic functions?
I am trying to create a boost thread in C++ that can be reused to run a variety of functions that can have different number and type of args.
Can this be done with C++11x variadics?
In my use case I ...
0
votes
2answers
31 views
Boost thread won't increase the value correctly
So, I have this code that doesn't seem to work: (more details below)
#include <boost/thread.hpp>
#include <boost/bind.hpp>
#include <Windows.h>
using namespace std;
boost::mutex ...
-3
votes
2answers
93 views
Boost Thread int parameter to member function not working?
Completely new to threading and concurrency but I'm trying to start a function as a new thread and I don't understand my errors. I receive an error along the lines of Candidate expects X arguments, 2 ...
1
vote
1answer
97 views
Can boost::mutex lock out an OS if enough are active?
I'm working on a producer consumer problem with an intermediate processing thread. When I run 200 of these applications it locks the system up in win7 when lots of connections timeout. Unfortunately, ...
0
votes
3answers
111 views
boost two threads
C++ Boost question about loops.
So I've been looking over as much information as I can and still not seeing any examples of what I am trying to do or the principles of how it works.
I've been ...
0
votes
0answers
111 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()
{
...
1
vote
1answer
222 views
How can I use Boost condition variables in producer-consumer scenario?
EDIT: below
I have one thread responsible for streaming data from a device in buffers. In addition, I have N threads doing some processing on that data. In my setup, I would like the streamer thread ...
0
votes
2answers
87 views
Boost Threading Conceptualization / Questions
I've got a function that is typically run 50 times (to run 50 simulations). Usually this is done sequentially single threaded but I'd like to speed things up using multiple threads. The threads don't ...
1
vote
1answer
134 views
Managing thread life-cycle in derived class
I have a Base class which acts as an interface to multiple strategies for synchronous event processing. I now want the strategies to process the events asynchronously. To minimize code refactor, each ...
2
votes
1answer
97 views
Which library for parallel for-loops that iterate 1M*1k times, OpenMP or boost::thread?
I want to iterate an image pixel by pixel and do a 1000 of floating point operations per pixel. Do you think I should use multi-threading or multiprocessing, i.e. boost::thread or OpenMP for this? Is ...
1
vote
3answers
135 views
How can I call a function on a different thread using C++?
I'm creating a component that will be consumed by other teams / products. The component allows client code to issue a set of commands, and internally these commands are executed on a worker thread - ...
4
votes
1answer
73 views
what kind of multithreaded protection for this case?
I'm using C++, and I'm using the boost library mutex, recursive_mutex and other synchronization objects.
I often have the following pattern:
void RebuildAll(). This function makes many internal ...
0
votes
0answers
403 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
1answer
59 views
How can I execute a function with boosts io_service.post() and use an array or pointer as parameter?
While trying to construct a program, which can transmit a block/array of data with boosts async_write, I probably ran into trouble with my threads:
This is what I would like to execute:
...
-1
votes
1answer
234 views
Multithreaded Game Loop Rendering/Updating (boost-asio)
So I have a single-threaded game engine class, which has separate functions for input, update and rendering, and I've just started learning to use the wonderful boost library (asio and thread ...
-1
votes
1answer
101 views
Is performance affected if multiple threads use the same object? [closed]
The object in this case is a dictionary with some search methods. Only reading operations.
2
votes
3answers
305 views
Is there a way to set thread affinity to a processor core with the boost thread library?
And would it be a good idea to do so if I needed the processor cores running on 100% for a dozen seconds or would I get better performance if I let the system decide how to handle the threads?
What I ...
1
vote
1answer
72 views
can a threadpool(like boost) be initialized into a class constructor and used when class members are called?
Lets say I have a threadpool (example might be http://threadpool.sourceforge.net/);
And i have this code:
class Demigod{
public:
Demigod();
void AskObedienceFast();
void AskObedienceSlow();
...
1
vote
0answers
96 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 ...
0
votes
3answers
451 views
multithreaded program producer/consumer [boost]
I'm playing with boost library and C++. I want to create a multithreaded program that contains a producer, conumer, and a stack. The procuder fills the stack, the consumer remove items (int) from the ...
3
votes
1answer
274 views
How to make a shared_lock or upgrade_lock in standard C++11?
I am missing very much from the new standard the std::shared_lock template class.
In Boost.Thread there is boost::shared_lock, even boost::upgrade_lock exists.
Why is that, there is no ...
3
votes
1answer
167 views
Manually writing a multithreaded loop - suboptimal scalability
I have written this test application: it goes through iterations from 0 to 9999, for each integer in the range it calculates some useless but calculation-intensive function. As a result the program ...
1
vote
2answers
109 views
Linux: application responsiveness and select()
I have a C++ console app that uses open() [O_RDWR | O_NONBLOCK], write(), select(), read() and close() to work with device file. Also ioctl() can be called to cancel current operation. At any given ...
1
vote
2answers
262 views
Correct Way to Use a Mutex
What I would like to know about the code below, is: Are the use of try catch blocks around method calls good practice. What are the follies in the code below?
#ifndef TIMER_H
#define TIMER_H
...
2
votes
1answer
113 views
Boost thread disabling
I try to implement blocking queue. the main parts are the following (it's a kind of educational task)
template <typename T>
class Blocking_queue
{
public:
std::queue<T> _queue;
...
0
votes
1answer
96 views
c++ boost thread_group with asycron returns
I´m trying to write a function that handles both input arguments and return values from a thread in a thread group.
My example class:
// includes...
class MyClass(int id)
{
thread_id = id;
...
0
votes
2answers
146 views
How to implement a multi-threaded asynchronous operation?
Here's how my current approach looks like:
// Somewhere in a UI class
// Called when a button called "Start" clicked
MyWindow::OnStartClicked(Event &sender)
{
_thread = new ...
0
votes
0answers
76 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
1answer
77 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 < ...
1
vote
1answer
320 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 ...
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 ...
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
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
419 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
...
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
3answers
528 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
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;
...
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. ...
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 ...
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
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 ...

