My application has a thread that is created using CreateThread
. What is the difference between calling ExitThread
from within said thread and allowing the thread to exit normally (i.e. reaching the end of the thread function)? I am using C++ and Visual Studio 2008. Thanks.
Actually, something very important:
..., in C++ code, the thread is exited before any destructors can be called or any other automatic cleanup can be performed. Therefore, in C++ code, you should return from your thread function
(Edit Source)
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With