bnicholes    01/10/04 14:00:00

  Modified:    include/arch/netware thread_rwlock.h thread_mutex.h
                        thread_cond.h
  Log:
  Implementation of the new locking routines
  
  Revision  Changes    Path
  1.2       +1 -0      apr/include/arch/netware/thread_rwlock.h
  
  Index: thread_rwlock.h
  ===================================================================
  RCS file: /home/cvs/apr/include/arch/netware/thread_rwlock.h,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- thread_rwlock.h   2001/09/08 23:36:34     1.1
  +++ thread_rwlock.h   2001/10/04 21:00:00     1.2
  @@ -60,6 +60,7 @@
   
   struct apr_thread_rwlock_t {
       apr_pool_t *pool;
  +    NXRwLock_t *rwlock;
   };
   
   #endif  /* THREAD_RWLOCK_H */
  
  
  
  1.2       +1 -0      apr/include/arch/netware/thread_mutex.h
  
  Index: thread_mutex.h
  ===================================================================
  RCS file: /home/cvs/apr/include/arch/netware/thread_mutex.h,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- thread_mutex.h    2001/09/04 23:28:50     1.1
  +++ thread_mutex.h    2001/10/04 21:00:00     1.2
  @@ -60,6 +60,7 @@
   
   struct apr_thread_mutex_t {
       apr_pool_t *pool;
  +    NXMutex_t *mutex;
   };
   
   #endif  /* THREAD_MUTEX_H */
  
  
  
  1.2       +1 -0      apr/include/arch/netware/thread_cond.h
  
  Index: thread_cond.h
  ===================================================================
  RCS file: /home/cvs/apr/include/arch/netware/thread_cond.h,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- thread_cond.h     2001/09/13 01:04:23     1.1
  +++ thread_cond.h     2001/10/04 21:00:00     1.2
  @@ -60,6 +60,7 @@
   
   struct apr_thread_cond_t {
       apr_pool_t *pool;
  +    NXCond_t *cond;
   };
   
   #endif  /* THREAD_COND_H */
  
  
  

Reply via email to