dougm       2002/06/23 14:27:48

  Added:       xs/APR/ThreadMutex APR__ThreadMutex.h
  Log:
  wrapper for APR::ThreadMutex
  
  Revision  Changes    Path
  1.1                  modperl-2.0/xs/APR/ThreadMutex/APR__ThreadMutex.h
  
  Index: APR__ThreadMutex.h
  ===================================================================
  #define apr_thread_mutex_DESTROY apr_thread_mutex_destroy
  
  static MP_INLINE
  apr_thread_mutex_t *mpxs_apr_thread_mutex_create(pTHX_ SV *classname,
                                                   apr_pool_t *pool,
                                                   unsigned int flags)
  {
      apr_thread_mutex_t *mutex = NULL;
      (void)apr_thread_mutex_create(&mutex, flags, pool);
      return mutex;
  }
  
  
  


Reply via email to