
10 Oct
2011
10 Oct
'11
2:07 a.m.
AMDG On 10/09/2011 06:20 PM, davieyan wrote:
Hi, I write code to start a thread,but how to free this thread.
What do you mean by freeing the thread? The thread object is destroyed when it goes out of scope, like any other object created on the stack.
code:
void helloworld() { std::cout << "Hello World!" << std::endl; }
int main() { boost::thread thrd(&helloworld); thrd.join(); }
In Christ, Steven Watanabe