You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by ia...@apache.org on 2003/12/29 22:10:18 UTC

cvs commit: apr/include apr_atomic.h apr_portable.h

ianh        2003/12/29 13:10:18

  Modified:    include  apr_atomic.h apr_portable.h
  Log:
  more doxygen fixes from sander
  Submitted by: sander temme <sander at temme dot net>
  
  Revision  Changes    Path
  1.67      +1 -0      apr/include/apr_atomic.h
  
  Index: apr_atomic.h
  ===================================================================
  RCS file: /home/cvs/apr/include/apr_atomic.h,v
  retrieving revision 1.66
  retrieving revision 1.67
  diff -u -r1.66 -r1.67
  --- apr_atomic.h	4 Dec 2003 20:06:03 -0000	1.66
  +++ apr_atomic.h	29 Dec 2003 21:10:18 -0000	1.67
  @@ -100,6 +100,7 @@
   /**
    * atomically set an apr_uint32_t in memory
    * @param mem pointer to the object
  + * @param val value that the object will assume
    */
   APR_DECLARE(void) apr_atomic_set32(volatile apr_uint32_t *mem, apr_uint32_t val);
   
  
  
  
  1.90      +3 -0      apr/include/apr_portable.h
  
  Index: apr_portable.h
  ===================================================================
  RCS file: /home/cvs/apr/include/apr_portable.h,v
  retrieving revision 1.89
  retrieving revision 1.90
  diff -u -r1.89 -r1.90
  --- apr_portable.h	26 Oct 2003 23:22:16 -0000	1.89
  +++ apr_portable.h	29 Dec 2003 21:10:18 -0000	1.90
  @@ -164,14 +164,17 @@
   /** Basic OS process mutex structure. */
   struct apr_os_proc_mutex_t {
   #if APR_HAS_SYSVSEM_SERIALIZE || APR_HAS_FCNTL_SERIALIZE || APR_HAS_FLOCK_SERIALIZE
  +    /** Value used for SYS V Semaphore, FCNTL and FLOCK serialization */
       int crossproc;
   #endif
   #if APR_HAS_PROC_PTHREAD_SERIALIZE
  +    /** Value used for PTHREAD serialization */
       pthread_mutex_t *pthread_interproc;
   #endif
   #if APR_HAS_THREADS
       /* If no threads, no need for thread locks */
   #if APR_USE_PTHREAD_SERIALIZE
  +    /** This value is currently unused within APR and Apache */ 
       pthread_mutex_t *intraproc;
   #endif
   #endif