You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by yl...@apache.org on 2016/03/06 01:30:18 UTC

svn commit: r1733777 - /apr/apr/trunk/include/apr_portable.h

Author: ylavic
Date: Sun Mar  6 00:30:18 2016
New Revision: 1733777

URL: http://svn.apache.org/viewvc?rev=1733777&view=rev
Log:
proc_mutex-unixes: the apr_os_proc_mutex_t member intraproc is not used
internally and can then be axed for 2.0.

Modified:
    apr/apr/trunk/include/apr_portable.h

Modified: apr/apr/trunk/include/apr_portable.h
URL: http://svn.apache.org/viewvc/apr/apr/trunk/include/apr_portable.h?rev=1733777&r1=1733776&r2=1733777&view=diff
==============================================================================
--- apr/apr/trunk/include/apr_portable.h (original)
+++ apr/apr/trunk/include/apr_portable.h Sun Mar  6 00:30:18 2016
@@ -136,13 +136,6 @@ struct apr_os_proc_mutex_t {
     /** Value used for PTHREAD serialization */
     pthread_mutex_t *pthread_interproc;
 #endif
-#if APR_HAS_THREADS
-    /* If no threads, no need for thread locks */
-#if APR_USE_PTHREAD_SERIALIZE
-    /** This value is currently unused within APR and Apache */ 
-    pthread_mutex_t *intraproc;
-#endif
-#endif
 #if APR_HAS_POSIXSEM_SERIALIZE
     /** Value used for POSIX semaphores serialization */
     sem_t *psem_interproc;