Tagged Questions
5
votes
3answers
186 views
C++ chain of tasks
I have to handle the following scenerio: I've 5 tasks("A","B","C","D","E"), I'd like to parallelize them but in respect to their dependiences. They have to be executed in such an order:
A --> B ...
0
votes
1answer
30 views
boost thread & class
I need to execute "Run" in a separate thread
class TcpClient
{
public:
TcpClient();
virtual ~TcpClient();
void Run();
}
I run it using boost:
MessageBox(0, "1", APP_NAME, NULL);
...
0
votes
1answer
76 views
One Writer Many Readers issue for map
I seem to be having an issue synchronizing a data collection. In this particular class, I have a data collection, mutex, and condition variable that looks something like:
map<std::string, ...
2
votes
0answers
94 views
safely terminating a thread in Meyers Singleton
I have a boost thread running inside a Meyers' Singleton. It happily runs for the duration of my program.
When my Singleton's destructor is called (when the program is loaded out of memory) I set a ...
-1
votes
1answer
52 views
C++ boost thread and mutex [closed]
I just started on boost. I would like to ask if my code uses mutex well.
To test it I wrote code which counts sum of numbers 1 to n. Silly way to count it but I used n threads... just to try mutex...
...
0
votes
1answer
46 views
How do I use a boost condition variable to wait for a thread to complete processing?
I am using a conditional variable to stop a thread until another thread has completed processing it's task queue (long story). So, on one thread I lock and wait:
boost::mutex::scoped_lock ...
0
votes
2answers
173 views
Boost Mutex Scoped Lock
I was reading through a Boost Mutex tutorial on drdobbs.com, and found this piece of code:
#include <boost/thread/thread.hpp>
#include <boost/thread/mutex.hpp>
#include ...
1
vote
1answer
47 views
C++ Boost::ASIO Thread Pool issue
I just created my Thread Pool for game server, but i got one error in compiling what i didn't know how to fix.
Error :
Connection/CConnection.cpp: In lambda function:
...
1
vote
1answer
26 views
Passing abstract overridden method to Boost::Thread
I have an abstract class, simModbusServer, which has an abstract method, run(). It also has this method:
void simModbusServer::start() {
serverThread = boost::thread(&simModbusServer::run);
}
...
0
votes
3answers
95 views
C++ Boost::Thread & Boost::ASIO memory leak
I got one problem in my code.
When connection finishes there is 10 megabytes ram leak everyone connection.
Connection work propertly, and packet sended is valid.
I don't know where is wrong.
...
0
votes
0answers
32 views
Problems with Boost using eclipse
I'm trying to write a programm with boost in C++ using Eclipse. Eclipse itself works fine with C++ and MinGW. So I installed boost: I ran "bjam.exe --toolset=gcc --build-type=complete" to configure ...
1
vote
1answer
68 views
How to pass io_service object to a new thread using boost::bind?
I have a class called overlay_server which has a public method
void member_list_server(boost::asio::io_service &io_service){
Now I want to run this in a new thread. So I create a new thread, ...
1
vote
1answer
85 views
Passing data from caller thread to the method in another boost::thread
I have rather a noob question regarding concurrency in C++ (Using Boost threads) on which I haven't found a clear answer.I have a worker class which runs in a separate thread.I init the worker on ...
0
votes
1answer
60 views
How to create iterative boost threads?
I am working with Boost threads library in C++ and I want to create different threads to process some buckets of data. Firstly, I load the data into smaller buckets (100 elements each) and assign each ...
2
votes
2answers
79 views
Multi Threading Using Boost C++ - Synchronisation Issue
I would like to do multithreading where Thread ONE passes data to 4-5 Worker Threads which process the data and ones ALL Worker Threads are finished I would like to continue. I'm using boost to ...
0
votes
1answer
65 views
About boost::lock_guard and boost::unique_lock
I was hoping someone could tell me if my understanding on the following 3 locks is correct and possibly add to it. my main concern is speed with minimum overhead.
boost::lock_guard
...
2
votes
2answers
82 views
boost::thread join function blocks calling thread
Question 1:
I read that when you call join after creating a thread it blocks the thread that called it until the thread function returned. I'm trying to build a multiply client server which can accept ...
1
vote
3answers
57 views
Pass by reference vs. Pass by pointer: Boost threads and deadline timer
I have this simple program that outputs increasing integers in the span of 1 second using boost libraries:
#include <iostream>
#include <boost/thread/thread.hpp>
#include ...
0
votes
1answer
44 views
Linking to Boost thread library fails
I have a serious problem with Boost 1.52.0.
In Eclipse, I always get:
boost/thread/detail/thread.hpp:223: undefined reference to `boost::thread::start_thread()
Of course I'm using lboost_system, ...
2
votes
2answers
136 views
When do I have to use boost::asio:strand
Reading the document of boost::asio, it is still not clear when I need to use asio::strand. Suppose that I have one thread using io_service is it then safe to write on a socket as follows ?
void ...
0
votes
3answers
165 views
A thread-safe implementation of a generic container of type pair<unsigned int, boost::any> using shared_ptrs
I have created a generic message queue for use in a multi-threaded application. Specifically, single producer, multi-consumer. Main code below.
1) I wanted to know if I should pass a shared_ptr ...
0
votes
1answer
133 views
boost c++ lock-free queue vs shared queue
I'm quite new in multithreading programming, I just know the most common Producer-Consumer-Queue.
I'm using the boost c++ libraries and I don't know if is better use boost::lockfree::queue or a ...
1
vote
1answer
64 views
Boost mutex and class member access
I have hit a problem while trying to use BOOST threads 1.53.0. Since I am a newbie to BOOST, I have now a problem where a large class from a project needs to have some thread mode processing.
While ...
0
votes
1answer
45 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 ...
1
vote
2answers
69 views
pass arguments to function in a boost::thread
This is my first time using the boost thread function and prior to this I have little knowledge of working with multiple threads. I attempting to run a second instance of a function alongside the ...
3
votes
1answer
127 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) ...
1
vote
1answer
39 views
how can I use muti boost thread in a dll in background
The after part is my program, but it not work as what I expect. I want the Main window program call function "MyDllIniSys" in the dll, let the dll render window per maybe 32 microseconds till the Main ...
2
votes
2answers
141 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 ...
5
votes
1answer
100 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
2answers
38 views
boost::thread execution
I have a class ChunkManager that has a few (supposed to be) asynchronous methods. These methods handle tasks in my game engine such as loading the map blocks (similar to Minecraft) on a different ...
0
votes
1answer
60 views
Boost ASIO shared library trouble
I'm basically building a shared library based on the serialisation example in the ASIO documentation, by this I mean I am compiling with the -shared and -fpic options to produce an .so file, which ...
0
votes
2answers
191 views
Design for Boost ASIO , Worker threads SQl queries for 'practical' web server
I am looking for solution to develop an efficient web server framework where:
One or few IO threads handle client HTTP connections and TCP IO.
Multiple threads do business processing (SQL queries, ...
2
votes
1answer
176 views
Understanding a memory leak while using boost::asio and boost::thread
I am working on a set of classes that make use of boost::asio to perform background tasks. In practice, the program will run continuously, but I have added signal handlers for cleanup during testing.
...
0
votes
0answers
72 views
Multiple Readers / Multiple Writers Solution
I have the following function that I would like to run by multiple threads:
float * readWrite(int & idx, const float * vector, const int & dimension){
float * subPart = new ...
0
votes
1answer
50 views
strange timing of the python extension execusion or building boost.python with --threading=single
I got very strange behavior of my python extension built with the boost.python library. Namely, in the piece of code:
import my_ext
j = 0
while j<5:
print j
my_ext.do_something(j)
j = ...
1
vote
0answers
34 views
Which boost file includes libstdcpp3.hpp?
When I include boost in my code, I get precompiler errors from gcc v3.4.6 complaining that Boost does not support threading when built inside an Interix SUA v3.5 shell. This error is eliminated by ...
0
votes
1answer
188 views
OBSE and Boost.Asio: Threaded async UDP server with deadline_timer on the same io_service
Platform: Windows 7 Professional 64 bit
Compiler: VS2010 Express
Boost: Version 1.49
Plugin System: OBSE 20 (for the Oblivion game by Bethesda)
I have a class based upon the async udp examples. I ...
0
votes
1answer
56 views
Modifying global variables from threaded functions and still run the main thread to use the Global varibales
I have a project in Visual C++ 2010 where I have to draw some circles and lines. The coordinates of the circles depend on two global variables. The global variables are modified from two functions, ...
-1
votes
2answers
121 views
How to sychronize the data being processed in a multithread program?
I am using boost library to develop a asynchronous udp communication. A data received at the receiver side is being precessed by another thread.Then my problem is when i read the received
data in ...
0
votes
1answer
137 views
boost thread error <unresolved overloaded function type>
I'm working on an optimisation project and have decided to try threads to increase the speed of my code. the format of the code is:
Main.cpp:
int main(int argc, char **argv) {
B *b = new ...
1
vote
2answers
96 views
Handle console io in multithreaded applications
I'm writing a multithreaded console app in C++11 using boost.
But the problem I have is that the output overwrites the input.
Example:
Attempting to type "Do stuff for me".
This is output.
Do stuff ...
0
votes
2answers
162 views
c++ linking failed with undefined reference to libboost_thread
Just getting started with multithreading using boost threads; I have a Hello World type program which fails during linking to the thread library. The following is the terminal window output:
g++ ...
1
vote
2answers
336 views
C++11 thread vs boost thread
Am in the process of migrating my project to the c++11 standard with msvc110, unfortunately a thread variable, used on a dll, is behaving different from what the boost version I had.
So, originally ...
12
votes
7answers
498 views
Random numbers for multiple threads
Problem
I intend to write a C++11 application for Linux which does some numerical simulation (not cryptography) based on approximately one million pseudorandom 32bit numbers. To speed things up, I'd ...
0
votes
3answers
125 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
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()
{
...
1
vote
1answer
133 views
“too few arguments to function” in boost thread
I am trying to develop a stereoscopic vision system. I am receiving the messages below whenever I try to build my code:
***** Build of configuration Debug for project RicoCameraCpp ****
make ...
0
votes
1answer
105 views
boost sockets in 2 threads
I'm using boost sockets and boost threads. (Sync sockets). And if i understand correctly this scheme isn't working.
using boost::asio::ip::tcp;
boost::asio::ip::tcp::socket *MySocket;
bool Key = ...
0
votes
1answer
90 views
Communication between threads via shared vector
I am designing a tcp server which takes information from a request and puts everything in a queue to be processed. I am using a asio web server to handle all web interaction. I am looking for an ...
88
votes
10answers
87k views
Boost Thread tutorials [closed]
Not really a question, more of a reference list:
Boost.Thread was heavily modified since 1.34, to conform to upcoming C++0x standard. Thus, most tutorials I can find on the web can be considered ...


