Top "Boost-thread" questions

Boost.

How to pass function parameters to boost::thread_groups::create_thread()

I am new to Boost.Threads and am trying to understand how to pass function arguments to the boost::thread_…

c++ boost-thread
Execute callback function on main thread from std::thread

I have a requirement of executing a callback function on exit of a std::thread and the callback function should …

c++ multithreading c++11 pthreads boost-thread
Can multithreading speed up memory allocation?

I'm working with an 8 core processor, and am using Boost threads to run a large program. Logically, the program can …

c++ multithreading memory-management new-operator boost-thread
Trying to link Boost 1.52 thread

I am trying to compile my program but it wouldn't link at all. I have specified the path to the …

c++ visual-c++ compiler-errors boost-thread visual-c++-2010
Do we need multiple io_service per thread for threaded boost::asio server with a single acceptor

I am not much experienced in boost::asio. I've some pretty basic questions. Do I need to have a different …

c++ sockets boost boost-asio boost-thread
Pausing a boost::thread for unlimited time

I'm using the boost::thread library (V1.44) to support threads in my C++ project. The user needs to be able …

c++ multithreading boost boost-thread
BOOST: recursive shared_mutex?

Seems that Boost's shared_mutex is non recursive.. Is there anyway around this? (without re implementing the whole stuff)

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

c++ boost boost-thread undefined-reference chrono
Boost threads - passing parameters by reference

My application has a section that resembles the following code void SomeClass::OtherMethod(std::vector<std::string>& …

c++ boost boost-thread boost-bind
On which platforms is thread local storage limited and how much is available?

I was recently made aware that thread local storage is limited on some platforms. For example, the docs for the …

c++ multithreading cross-platform boost-thread thread-local