You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@httpd.apache.org by Nedelcho Stanev <de...@atlanticsky.com> on 2003/08/26 20:20:10 UTC

call apr_global_mutex_lock

X-MailQube-Processed-By : MailQube Core Tracking 1.1.1
X-MailQube-Processed-By: MailQube Security Outgoing v1.1.0
X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N

Hello all,

does anyone can help with this
i have module where i call between different threads
apr_global_mutex_lock
mutexes are stored in shared memory.
on windows code pass, on linux i got 
error "permission denied"
what can be a solution?

decho

Re: call apr_global_mutex_lock

Posted by Eduardo Franco <ed...@pulso.com.br>.
Probably, the mutex got created by one user account (maybe before the 
initial fork of the httpd) and then you're trying to arquire it with 
other process with different privileges, getting access denied... can 
you send some code snipets?!


--
Eduardo Franco

Nedelcho Stanev wrote:

> Hello all,
> 
> does anyone can help with this
> i have module where i call between different threads
> apr_global_mutex_lock
> mutexes are stored in shared memory.
> on windows code pass, on linux i got 
> error "permission denied"
> what can be a solution?
> 
> decho
>