You are viewing a plain text version of this content. The canonical link for it is here.
Posted to modperl-cvs@perl.apache.org by do...@apache.org on 2002/05/22 18:30:14 UTC

cvs commit: modperl-2.0/xs/APR/OS APR__OS.h

dougm       02/05/22 09:30:14

  Added:       xs/APR/OS APR__OS.h
  Log:
  wrapper for apr_os_thread_current()
  
  Revision  Changes    Path
  1.1                  modperl-2.0/xs/APR/OS/APR__OS.h
  
  Index: APR__OS.h
  ===================================================================
  static MP_INLINE apr_os_thread_t mpxs_apr_os_thread_current(pTHX)
  {
  #if APR_HAS_THREADS
      return apr_os_thread_current();
  #else
      return (void *)0;
  #endif
  }