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

cvs commit: apr/include/arch/os2 threadproc.h

bjh         01/09/01 22:44:43

  Modified:    include/arch/os2 threadproc.h
  Log:
  OS/2: Define apr_thread_once_t
  
  Revision  Changes    Path
  1.12      +5 -0      apr/include/arch/os2/threadproc.h
  
  Index: threadproc.h
  ===================================================================
  RCS file: /home/cvs/apr/include/arch/os2/threadproc.h,v
  retrieving revision 1.11
  retrieving revision 1.12
  diff -u -r1.11 -r1.12
  --- threadproc.h	2001/08/31 06:48:09	1.11
  +++ threadproc.h	2001/09/02 05:44:43	1.12
  @@ -95,5 +95,10 @@
       apr_int32_t detached;
   };
   
  +struct apr_thread_once_t {
  +    unsigned long sem;
  +    char hit;
  +};
  +
   #endif  /* ! THREAD_PROC_H */