boost-thread
How do I make Boost threads run serially, not in parallel?
I h开发者_Go百科ave a piece of code which uses Boost threads to speed up the calculation, but I need to debug it and want to run them in series, not in parallel. How do I do that?Unless I\'m missing s[详细]
2023-01-14 08:20 分类:问答boost::threads execution ordering
i have a problem with the order of execution of the threads created consecutively. here is the code. #include <iostream>[详细]
2023-01-14 02:47 分类:问答shared_ptr Assertion px != 0 failed
I have a fairly complex multi threaded application (server) that from time to time will crash due to an assert:[详细]
2023-01-12 19:53 分类:问答Upgrade of BOOST 1.35 to 1.43 causes linker error with __pRawDllMain (mfc related)
At work we have an MFC Extension DLL that built fine with 1.35 but when built with 1.43 causes the following error:[详细]
2023-01-11 19:47 分类:问答boost::thread and creating a pool of them!
boost::thread class has a default constructor which gives a \"Not-a-thread\", so what is boost::thread t1;[详细]
2023-01-10 22:19 分类:问答Give a name to a boost thread?
Is it possible to give a name to a boost::thread so that the debuggers tables an开发者_运维百科d the crash logs can be more readable? How?You would need to access the underlying thread primitive and a[详细]
2023-01-09 05:04 分类:问答How to implement an Exchanger (Rendezvous Pattern) in C++?
In Java, there is an Exchanger class (https://docs.oracle开发者_运维知识库.com/javase/1.5.0/docs/api/java/util/concurrent/Exchanger.html). How to implement something like that in C++ (using boost)?The[详细]
2023-01-07 00:03 分类:问答Problems regarding Boost::Python and Boost::Threads
Me and a friend are developing an application which uses Boost::Python. I have defined an interface in C++ (well a pure virtual class), exposed through Boost::Python to the users, who have to inherit[详细]
2023-01-06 19:37 分类:问答Signals and threads - good or bad design decision?
I have to write a program that performs highly computationally intensive calculations. The program might run for several days.[详细]
2023-01-02 22:32 分类:问答Boost.Thread throws bad_alloc exception in VS2010
Upon including <boost/thread.hpp> I get this exception: First-chance exception at 0x7c812afb in CSF.exe: Microsoft C++ exception:[详细]
2022-12-31 22:45 分类:问答