$include_dir="/home/hyper-archives/boost/include"; include("$include_dir/msg-header.inc") ?>
Subject: Re: [boost] [thread] thread::join() + thread::interrupt() not reliable?
From: Oliver Kowalke (oliver.kowalke_at_[hidden])
Date: 2013-01-14 10:13:20
answering myself:
postconditions of thread::join(): If *this refers to a thread of execution
on entry, that thread of execution has completed. *this no longer refers to
any thread of execution.
note: Operations on *this are not synchronized.
you can not expect to call thread::join() from multiple threads.