Reputation: 14254
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.
Upvotes: 5
Views: 1220