21 Jan
2006
21 Jan
'06
1:45 p.m.
Rob Lemley schrieb:
Highly recommended for cross-platform thread programming. ... Plus it's very well researched, thought-out, documented and has been through the boost review process! Don't try it yourself at home, I think you would not come up with anything better.
Is it that good? Even for this simple sample there are memory leaks under vc.net. void doNothing() {} int main() { boost::thread* thrd = new boost::thread( &doNothing ); thrd->join(); delete thrd; return 0; }