You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by wr...@apache.org on 2001/07/27 07:40:18 UTC

cvs commit: apr/test testlock.c

wrowe       01/07/26 22:40:18

  Modified:    test     testlock.c
  Log:
    More fooness
  
  Revision  Changes    Path
  1.4       +4 -4      apr/test/testlock.c
  
  Index: testlock.c
  ===================================================================
  RCS file: /home/cvs/apr/test/testlock.c,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- testlock.c	2001/06/06 22:25:43	1.3
  +++ testlock.c	2001/07/27 05:40:18	1.4
  @@ -73,8 +73,8 @@
   
   #define MAX_ITER 40000
   
  -void * APR_THREAD_FUNC thread_rw_func(void *data);
  -void * APR_THREAD_FUNC thread_function(void *data);
  +void * APR_THREAD_FUNC thread_rw_func(apr_thread_t *thd, void *data);
  +void * APR_THREAD_FUNC thread_function(apr_thread_t *thd, void *data);
   apr_status_t test_exclusive(void);
   apr_status_t test_rw(void);
   apr_status_t test_multiple_locking(void);
  @@ -85,7 +85,7 @@
   apr_pool_t *pool;
   int i = 0, x = 0;
   
  -void * APR_THREAD_FUNC thread_rw_func(void *data)
  +void * APR_THREAD_FUNC thread_rw_func(apr_thread_t *thd, void *data)
   {
       int exitLoop = 1;
   
  @@ -110,7 +110,7 @@
       return NULL;
   } 
   
  -void * APR_THREAD_FUNC thread_function(void *data)
  +void * APR_THREAD_FUNC thread_function(apr_thread_t *thd, void *data)
   {
       int exitLoop = 1;