ExitThread versus Allowing Thread Function to Exit Normally - C++
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 Vis开发者_JS百科ual 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)
精彩评论