You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by tr...@apache.org on 2001/09/20 00:10:44 UTC

cvs commit: apr/locks/unix proc_mutex.c

trawick     01/09/19 15:10:44

  Modified:    locks/unix proc_mutex.c
  Log:
  fix some missed function renames (proc_pthread_cleanup ->
  proc_mutex_proc_pthread_cleanup)
  
  Submitted by:	Aaron Bannert
  
  Revision  Changes    Path
  1.2       +6 -6      apr/locks/unix/proc_mutex.c
  
  Index: proc_mutex.c
  ===================================================================
  RCS file: /home/cvs/apr/locks/unix/proc_mutex.c,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- proc_mutex.c	2001/09/19 20:06:44	1.1
  +++ proc_mutex.c	2001/09/19 22:10:44	1.2
  @@ -221,14 +221,14 @@
   #ifdef PTHREAD_SETS_ERRNO
           stat = errno;
   #endif
  -        proc_pthread_cleanup(new_mutex);
  +        proc_mutex_proc_pthread_cleanup(new_mutex);
           return stat;
       }
       if ((stat = pthread_mutexattr_setpshared(&mattr, PTHREAD_PROCESS_SHARED))) {
   #ifdef PTHREAD_SETS_ERRNO
           stat = errno;
   #endif
  -        proc_pthread_cleanup(new_mutex);
  +        proc_mutex_proc_pthread_cleanup(new_mutex);
           return stat;
       }
   
  @@ -238,14 +238,14 @@
   #ifdef PTHREAD_SETS_ERRNO
           stat = errno;
   #endif
  -        proc_pthread_cleanup(new_mutex);
  +        proc_mutex_proc_pthread_cleanup(new_mutex);
           return stat;
       }
       if ((stat = pthread_mutexattr_setprotocol(&mattr, PTHREAD_PRIO_INHERIT))) {
   #ifdef PTHREAD_SETS_ERRNO
           stat = errno;
   #endif
  -        proc_pthread_cleanup(new_mutex);
  +        proc_mutex_proc_pthread_cleanup(new_mutex);
           return stat;
       }
   #endif
  @@ -254,7 +254,7 @@
   #ifdef PTHREAD_SETS_ERRNO
           stat = errno;
   #endif
  -        proc_pthread_cleanup(new_mutex);
  +        proc_mutex_proc_pthread_cleanup(new_mutex);
           return stat;
       }
   
  @@ -262,7 +262,7 @@
   #ifdef PTHREAD_SETS_ERRNO
           stat = errno;
   #endif
  -        proc_pthread_cleanup(new_mutex);
  +        proc_mutex_proc_pthread_cleanup(new_mutex);
           return stat;
       }