Tagged Questions
0
votes
1answer
57 views
My process crash before main ,by datamngr.dll
My process crashes before main, on boost code:
myexe.exe!boost::`anonymous namespace'::run_thread_exit_callbacks() + 0xe6 bytes C++
The process written in c++ native for windows
The only strange ...
0
votes
1answer
152 views
C++ ReadConsoleInput not working with boost::thread
I've created to create a listener class that will call methods such as on_left_mouse_released on a controller object. It works fine, and now I am trying to have it run in another thread using ...
0
votes
1answer
171 views
Boost.Thread timed wait
What happens to thread run under Windows OS, when the timeout occurs using boost::thread::timed_join, and the waiting thread finishes? Does the thread remain or it finishes along with the process?
0
votes
0answers
211 views
linker error using qmake with boost thread in windows MSVC
I am using QtCreator on Windows with boost library. right now I am stuck with linking boost threading library against my Application.
In my C:\boost_1_47_0\bin.v2\libs\thread\build directory I see ...
0
votes
0answers
126 views
Exception when calling a function on the boost::barrier object from another library
I've a C++ application which loads a DLL and passes a callback. The DLL creates its own thread, does some tasks and passes a pointer to boost::barrier object to the main application through the ...
4
votes
1answer
821 views
Getting the ID of a boost::thread for PostThreadMessage
I have a Visual Studio 2008 C++ project using Boost 1.47.0 where I need to get the native Windows ID of a boost::thread to pass to PostThreadMessage.
In Windows Vista and 7, I would just do this:
...
0
votes
2answers
111 views
How to detect if a thread is active
Using MS VC++ and Boost thread, I have a routine -in fact a Windows procedure- in the main thread, that is called many times. In each call, the routine creates a new thread - I'm planning create the ...
5
votes
1answer
960 views
Possible to stop cin from waiting input?
In a graphical application I execute debug commands using the console input. When the console is created a new thread is also created to gather the user commands that handles all that input, the ...
0
votes
2answers
1k views
The difference between get_id and GetCurrentThreadId
I want to get the thread id through boost::thread:::get_id and GetCurrentThreadId.
but but the results are different.
I use boost::thread to do multi-threading. Why does the same thread ...
0
votes
1answer
319 views
boost thread and process cleanup on windows
In my program I have a static object that creates a boost::thread. The thread is supposed to run until program termination, but it shouldn't be terminated in random state, so I implemented controled ...