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

cvs commit: apr/shmem/unix shmem.c

trawick     02/01/05 05:38:44

  Modified:    shmem/unix shmem.c
  Log:
  get shmem.c to compile again after changes to apr_shmem.h
  
  Revision  Changes    Path
  1.36      +2 -2      apr/shmem/unix/shmem.c
  
  Index: shmem.c
  ===================================================================
  RCS file: /home/cvs/apr/shmem/unix/shmem.c,v
  retrieving revision 1.35
  retrieving revision 1.36
  diff -u -r1.35 -r1.36
  --- shmem.c	5 Jan 2002 08:03:53 -0000	1.35
  +++ shmem.c	5 Jan 2002 13:38:44 -0000	1.36
  @@ -89,7 +89,7 @@
   #include <kernel/OS.h>
   #endif
   
  -typedef struct apr_shmem_t {
  +struct apr_shmem_t {
       void *mem;
       void *curmem;
       apr_size_t length;
  @@ -104,7 +104,7 @@
   #elif APR_USE_SHMEM_BEOS
       area_id areaid; 
   #endif
  -} apr_shmem_t;
  +};
   
   APR_DECLARE(apr_status_t) apr_shm_init(apr_shmem_t **m, apr_size_t reqsize, 
                                          const char *filename, apr_pool_t *pool)