Top "Boost-thread" questions

Boost.

How to make class member function as thread function using boost

I am going to write an adapter class. In this class there is an xmlrpc-c server (abyss server). I want …

c++ linux boost xml-rpc boost-thread
Got "Bad file descriptor" when use boost::asio and boost::thread

int func(boost::asio::ip::tcp::socket &socket) { boost::system::error_code ec; socket.write_some(boost::asio::buffer("…

c++ boost boost-asio boost-thread
Getting return value from a boost::threaded member function?

I have a worker class like the one below: class Worker{ public: int Do(){ int ret = 100; // do stuff return ret; } } …

c++ boost boost-thread boost-bind boost-function
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 …

c++ boost-thread chrono
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 …

c++ boost c++11 boost-thread
Give a name to a boost thread?

Is it possible to give a name to a boost::thread so that the debuggers tables and the crash logs …

c++ debugging boost-thread
Multithreading using the boost library

Wish to simultaneously call a function multiple times. I wish to use threads to call a function which will utilize …

c++ multithreading boost-thread boost-bind
Parallel tasks get better performances with boost::thread than with ppl or OpenMP

I have a C++ program which could be parallelized. I'm using Visual Studio 2010, 32bit compilation. In short the structure of …

c++ openmp boost-thread ppl
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 …

c++ multithreading boost boost-thread
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 …

c++ multithreading boost-thread