Aleric Inglewood <aleric.inglew...@gmail.com> writes:

> I cannot find the answer to my question in the documentation;
> is apr_pool_t thread safe, and if so, what precautions are needed to
> make it so?

Looking at APR 1.3.4, it appears apr_pool_t is not thread safe.  Pools
have a mutex, but it's only used by some of the debugging functions.  So
you'd want to be sure not to access a pool from different threads at the
same time.

-- 
Dan Poirier <poir...@pobox.com>

Reply via email to