Reputation: 93
does boost threading has a way to wait for threads to complete without blocking message pump of GUI?
Upvotes: 0
Views: 171
Reputation: 5230
Don't put things in that way. Wait means blocking, so answer is no. If I understood correctly your question my advice is to do the opposite: when your thread is done call PostMessage to the window you want notify with some custom message.
Upvotes: 3