$include_dir="/home/hyper-archives/boost/include"; include("$include_dir/msg-header.inc") ?>
Subject: Re: [boost] [smart ptr] Any interest in copy-on-write pointer for C++11?
From: Ralph Tandetzky (ralph.tandetzky_at_[hidden])
Date: 2013-02-08 11:50:16
It is as thread-safe as necessary. The reference counter is atomic. It's
all well documented on github
<https://github.com/ralphtandetzky/cow_ptr>. You can find all the
thread-safety guarantees there. Thread-safety is documented at the
bottom of the long comment preceeding the cow_ptr class.
On 02/08/2013 05:33 PM, Alexey Tkachenko wrote:
> Intersting. Is it thread safe?
>
>
> On 8 Feb, 2013, at 11:16 PM, Ralph Tandetzky <ralph.tandetzky_at_[hidden]> wrote:
>
>> Hi,
>>
>> is there any interest in a copy-on-write pointer implementation? [...]