vote up 1 vote down star
1

I'd like to just create a thread, then call CloseHandle immediately and let the thread die on its own so that I don't have to do extra clean-up work in the 'original' thread (not that cleanup is hard in itself, but it means a fair amount of extra book-keeping which I'd like to avoid).

MSDN says that calling CloseHandle() on a thread doesn't terminate the thread, but it's not clear to me whether that means I'm really allowed to do this or not.

flag

2 Answers

vote up 5 vote down check

Not only is it reasonable, not doing it is a handle leak. Generally I close it immediately after creating the thread unless I'm going to need it elsewhere.

link|flag
+1, this way you won't get false positives when you use AppVerifier. – Paul Betts Jan 7 '09 at 0:30
vote up 1 vote down

CreateThread function make reference count +2, CloseHandle only make reference count -1, when thread function finished, system will make reference count -1.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.