On Fri, Dec 14, 2001 at 08:14:10PM -0000, [EMAIL PROTECTED] wrote:
> @@ -124,7 +124,11 @@
>
> struct allocator_t {
> apr_uint32_t max_index;
> +#if APR_HAS_THREADS
> apr_thread_mutex_t *mutex;
> +#else
> + void *mutex;
> +#endif
> apr_pool_t *owner;
> node_t *free[MAX_INDEX];
> };Do we even need to define mutex when threads aren't present? -- justin
