You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by gs...@apache.org on 2002/02/01 02:15:01 UTC

cvs commit: apr/test testprocmutex.c

gstein      02/01/31 17:15:01

  Modified:    test     testprocmutex.c
  Log:
  get rid of the apr_shmem.h include file -- it messes up dependencies.
  some minor tweaks to make it compile a bit better, but the use of
  shared memory in here is just borken. needs to be updated to the
  latest shm APIs.
  
  Revision  Changes    Path
  1.7       +2 -2      apr/test/testprocmutex.c
  
  Index: testprocmutex.c
  ===================================================================
  RCS file: /home/cvs/apr/test/testprocmutex.c,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- testprocmutex.c	29 Dec 2001 23:14:22 -0000	1.6
  +++ testprocmutex.c	1 Feb 2002 01:15:01 -0000	1.7
  @@ -52,7 +52,7 @@
    * <http://www.apache.org/>.
    */
   
  -#include "apr_shmem.h"
  +#include "apr_shm.h"
   #include "apr_thread_proc.h"
   #include "apr_file_io.h"
   #include "apr_lock.h"
  @@ -151,7 +151,7 @@
       apr_getopt_t *opt;
       char optchar;
       const char *optarg;
  -    apr_shmem_t *shm;
  +    apr_shm_t *shm;
   
       printf("APR Proc Mutex Test\n==============\n\n");
           
  
  
  

Re: cvs commit: apr/test testprocmutex.c

Posted by Greg Stein <gs...@lyra.org>.
On Thu, Jan 31, 2002 at 05:19:15PM -0800, Aaron Bannert wrote:
> On Fri, Feb 01, 2002 at 01:15:01AM -0000, gstein@apache.org wrote:
> > gstein      02/01/31 17:15:01
> > 
> >   Modified:    test     testprocmutex.c
> >   Log:
> >   get rid of the apr_shmem.h include file -- it messes up dependencies.
> >   some minor tweaks to make it compile a bit better, but the use of
> >   shared memory in here is just borken. needs to be updated to the
> >   latest shm APIs.
> 
> Done and committed.
> 
> -aaron

As said in IRC... you rock :-)

Cheers,
-g

-- 
Greg Stein, http://www.lyra.org/

Re: cvs commit: apr/test testprocmutex.c

Posted by Aaron Bannert <aa...@clove.org>.
On Fri, Feb 01, 2002 at 01:15:01AM -0000, gstein@apache.org wrote:
> gstein      02/01/31 17:15:01
> 
>   Modified:    test     testprocmutex.c
>   Log:
>   get rid of the apr_shmem.h include file -- it messes up dependencies.
>   some minor tweaks to make it compile a bit better, but the use of
>   shared memory in here is just borken. needs to be updated to the
>   latest shm APIs.

Done and committed.

-aaron