You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by wr...@apache.org on 2005/09/16 18:06:41 UTC

svn commit: r289592 - /httpd/httpd/trunk/os/unix/os.h

Author: wrowe
Date: Fri Sep 16 09:04:37 2005
New Revision: 289592

URL: http://svn.apache.org/viewcvs?rev=289592&view=rev
Log:

  I'd prefer, before 2.2-final, to have AP_NEED_SET_MUTEX_PERMS defined
  across all architectures as 1|0.  Comments?

  This simply ensures we can use the value in #if tests.

Modified:
    httpd/httpd/trunk/os/unix/os.h

Modified: httpd/httpd/trunk/os/unix/os.h
URL: http://svn.apache.org/viewcvs/httpd/httpd/trunk/os/unix/os.h?rev=289592&r1=289591&r2=289592&view=diff
==============================================================================
--- httpd/httpd/trunk/os/unix/os.h (original)
+++ httpd/httpd/trunk/os/unix/os.h Fri Sep 16 09:04:37 2005
@@ -38,7 +38,7 @@
 /* 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
+#define AP_NEED_SET_MUTEX_PERMS 1
 
 #ifdef _OSD_POSIX
 pid_t os_fork(const char *user);