$include_dir="/home/hyper-archives/boost-users/include"; include("$include_dir/msg-header.inc") ?>
Subject: Re: [Boost-users] [xpressive] is regex_match threadsafe?
From: Ovanes Markarian (om_boost_at_[hidden])
Date: 2009-03-18 10:41:22
On Wed, Mar 18, 2009 at 3:25 PM, Sergey Skorokhodov
<ucayalyfish_at_[hidden]>wrote:
> Hi,
>
> Is it safe to call regex_match with the same cregex|sregex object from
> different threads? Or should each thread use its own cregex|sregex object?
>
> TIA
>
> --
> Sergey Skorokhodov
I see in the docs that regex param is passed as a reference to the const
object, therefore calling regex_match from different threads is thread safe
for regex (cregex|sregex) object instances.
Greetings,
Ovanes