11 Jun
2007
11 Jun
'07
10:46 p.m.
On 11/06/07, Meryl Silverburgh
If I create a thread using boost::thread() library?
boost::thread thrd( &DoWork ) );
How can I kill "thrd" later on?
AFAIK you can't. I think it's because there was no safe, reasonable, cross-platform interface found for doing so. Also, I expect it wouldn't behave well with destructors and exceptions. That's just a guess, though. ~ Scott