Top "Boost-thread" questions

Boost.

Can I create a software watchdog timer thread in C++ using Boost Signals2 and Threads?

I am running function Foo from somebody else's library in a single-threaded application currently. Most of the time, I make …

c++ boost-thread boost-signals watchdog
What’s the best way to delete boost::thread object right after its work is complete?

I create boost::thread object with a new operator and continue without waiting this thread to finish its work: void …

c++ multithreading boost boost-thread
C++ gettid() was not declared in this scope

A simple program is: I would like to get the thread ID of both of the threads using this gettid …

c++11 linux-kernel system-calls boost-thread
Intel TBB vs Boost

I my new application I have flexibility to decide the use of library for multi-threading. So far I was using …

boost boost-thread tbb
Static Compile of Thread Example

I compiled the Boost C++ libraries as follows: bjam install variant=release link=static threading=multi runtime-link=static No errors. …

boost g++ linker boost-thread bjam
How can I immediately cancel a curl operation?

I'm using libcurl in C++, and I'm calling curl_easy_perform in a separate thread from my UI using Boost.…

c++ multithreading curl boost-thread
boost::exception_detail::clone_impl<boost::exception_detail::error_info_injector<boost::thread_resource_error> >

I need some help with this exception, I am implementing a NPAPI plugin to be able to use local sockets …

c++ visual-c++ boost-asio boost-thread firebreath
Boost Thread - How to acknowledge interrupt

I have blocking task which will be performed by find_the_question() function. However, I do not want thread executing …

c++ interrupt boost-thread
Using boost::asio::io_service::post()

First i asked this Running a function on the main thread from a boost thread and passing parameters to that …

boost boost-asio boost-thread boost-bind
Example of how to use boost upgradeable mutexes

I have a multithreaded server application that needs mutex locks over some shared memory. The shared memory are basically sTL …

c++ boost-thread boost-interprocess