proc_mutex can only be used to block on a cross process event. It can be
used in a threaded server, but cannot be held in multiple threads, you
might use it to block in a single thread queue per-process.
Thread_mutex will not block between processes, this is used for the
mutex-per-process logic s
+httpd-dev@
Hello!
2016-03-23 21:49 GMT+01:00 Ali Shah :
> Hi Module maintainers,
>
> I'm writing a simple apache module and I'd like to aggregate some
> statistics.
> I saw an example module that does this (
> https://wiki.apache.org/httpd/ModuleLife) using shared memory.
>
> My question for th