* os/unix/os.h: Define AP_NEED_SET_MUTEX_PERMS.

* modules/mappers/mod_rewrite.c, modules/ssl/ssl_engine_mutex.c: Use
AP_NEED_SET_MUTEX_PERMS to determine whether unixd_set_*_mutex_perms
calls are necessary.


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@105411 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Joe Orton
2004-10-12 11:55:30 +00:00
parent 549714b3d3
commit 1b3a4c2013
3 changed files with 11 additions and 7 deletions

View File

@ -23,6 +23,11 @@
#define PLATFORM "Unix"
#endif
/* On platforms where AP_NEED_SET_MUTEX_PERMS is defined, modules
* should call unixd_set_*_mutex_perms on mutexes created in the
* parent process. */
#define AP_NEED_SET_MUTEX_PERMS
#ifdef _OSD_POSIX
pid_t os_fork(const char *user);
#endif