31 Aug
2010
31 Aug
'10
7:14 p.m.
On Tue, Aug 31, 2010 at 7:31 PM, Jean-Sebastien Stoezel
I would like to create a thread from this initialization method, and wait for it to execute until the whole initialization process it done.
I would use a condition variable plus a boolean state (a primitive event) that is passed to the thread-function upon creation (utilizing boost::bind). thread waits for the condition to be signaled. the initialization routine updates the state and notifies the condition upon completion. If you need this pattern frequently, I'd suggest to extract that logic from CSubsystem::TaskWrapper into common class. Best regards, Christoph