$include_dir="/home/hyper-archives/boost/include"; include("$include_dir/msg-header.inc") ?>
Subject: [boost] [thread] static thread_specific_ptr?
From: k-oli_at_[hidden]
Date: 2009-02-25 16:07:11
Hello,
can I create an static thread specific pointer for class which will initalized
by different threads?
struct X
{
static thread_specific_ptr< U > tss_ptr_;
};
in some threads:
X::tss_ptr_.reset( new U);
And for each thread X::tss_ptr_ will point to a different object in the
freestore?
Oliver