You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by jo...@apache.org on 2004/06/05 13:52:43 UTC

cvs commit: apr/include/arch/unix apr_arch_proc_mutex.h

jorton      2004/06/05 04:52:43

  Modified:    .        configure.in
               include  apr.h.in
               include/arch/unix apr_arch_proc_mutex.h
  Log:
  * configure.in, include/arch/unix/apr_arch_proc_mutex.h,
  include/apr.h.in: Remove unimplemented "rwlock" serialization
  definitions.
  
  Revision  Changes    Path
  1.585     +0 -2      apr/configure.in
  
  Index: configure.in
  ===================================================================
  RCS file: /home/cvs/apr/configure.in,v
  retrieving revision 1.584
  retrieving revision 1.585
  diff -d -w -u -r1.584 -r1.585
  --- configure.in	4 Jun 2004 23:21:59 -0000	1.584
  +++ configure.in	5 Jun 2004 11:52:43 -0000	1.585
  @@ -1594,7 +1594,6 @@
                func:pthread_mutexattr_setpshared dnl
                file:/dev/zero,
                hasprocpthreadser="1", hasprocpthreadser="0")
  -APR_IFALLYES(struct:pthread_rw, hasrwlockser="1", hasrwlockser="0")
   
   # See which lock mechanism we'll select by default on this system.
   # The last APR_DECIDE to execute sets the default.
  @@ -1650,7 +1649,6 @@
   AC_SUBST(hasposixser)
   AC_SUBST(hasfcntlser)
   AC_SUBST(hasprocpthreadser)
  -AC_SUBST(hasrwlockser)
   AC_SUBST(flockser)
   AC_SUBST(sysvser)
   AC_SUBST(posixser)
  
  
  
  1.137     +0 -1      apr/include/apr.h.in
  
  Index: apr.h.in
  ===================================================================
  RCS file: /home/cvs/apr/include/apr.h.in,v
  retrieving revision 1.136
  retrieving revision 1.137
  diff -d -w -u -r1.136 -r1.137
  --- apr.h.in	4 Jun 2004 23:21:59 -0000	1.136
  +++ apr.h.in	5 Jun 2004 11:52:43 -0000	1.137
  @@ -178,7 +178,6 @@
   #define APR_HAS_POSIXSEM_SERIALIZE        @hasposixser@
   #define APR_HAS_FCNTL_SERIALIZE           @hasfcntlser@
   #define APR_HAS_PROC_PTHREAD_SERIALIZE    @hasprocpthreadser@
  -#define APR_HAS_RWLOCK_SERIALIZE          @hasrwlockser@
   
   #define APR_PROCESS_LOCK_IS_GLOBAL        @proclockglobal@
   
  
  
  
  1.5       +0 -4      apr/include/arch/unix/apr_arch_proc_mutex.h
  
  Index: apr_arch_proc_mutex.h
  ===================================================================
  RCS file: /home/cvs/apr/include/arch/unix/apr_arch_proc_mutex.h,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -d -w -u -r1.4 -r1.5
  --- apr_arch_proc_mutex.h	13 Feb 2004 09:38:30 -0000	1.4
  +++ apr_arch_proc_mutex.h	5 Jun 2004 11:52:43 -0000	1.5
  @@ -96,10 +96,6 @@
   #if APR_HAS_PROC_PTHREAD_SERIALIZE
   extern const apr_proc_mutex_unix_lock_methods_t apr_proc_mutex_unix_proc_pthread_methods;
   #endif
  -#if APR_HAS_RWLOCK_SERIALIZE
  -extern const apr_proc_mutex_unix_lock_methods_t apr_proc_mutex_unix_rwlock_methods;
  -#endif
  -
   
   #if !APR_HAVE_UNION_SEMUN && defined(APR_HAS_SYSVSEM_SERIALIZE)
   union semun {