$include_dir="/home/hyper-archives/boost-users/include"; include("$include_dir/msg-header.inc") ?>
From: monade (monade_at_[hidden])
Date: 2006-01-21 08:45:39
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;
}