brianp      2002/07/04 17:24:24

  Modified:    memory/unix apr_pools.c
  Log:
  use new time conversion macros in place of APR_USEC_PER_SEC
  
  Revision  Changes    Path
  1.181     +1 -1      apr/memory/unix/apr_pools.c
  
  Index: apr_pools.c
  ===================================================================
  RCS file: /home/cvs/apr/memory/unix/apr_pools.c,v
  retrieving revision 1.180
  retrieving revision 1.181
  diff -u -r1.180 -r1.181
  --- apr_pools.c       4 Jul 2002 15:04:42 -0000       1.180
  +++ apr_pools.c       5 Jul 2002 00:24:23 -0000       1.181
  @@ -2051,7 +2051,7 @@
   
       /* Sleep only if we have to... */
       if (need_timeout)
  -        apr_sleep(3 * APR_USEC_PER_SEC);
  +        apr_sleep(apr_time_from_sec(3));
   
       /* OK, the scripts we just timed out for have had a chance to clean up
        * --- now, just get rid of them, and also clean up the system accounting
  
  
  

Reply via email to