From: Zeljko Vrba (zvrba_at_[hidden])
Date: 2007-06-12 02:08:22


On Mon, Jun 11, 2007 at 05:36:43PM -0500, Meryl Silverburgh wrote:
> Hi,
>
> If I create a thread using boost::thread() library?
>
POSIX has the pthread_kill function. Install a signal handler, do your
cleanup from the signal handler and call pthread_exit from there. Make
sure the signal is not blocked.