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

cvs commit: apr/shmem/unix shmem.c

dreid       01/01/06 09:07:45

  Modified:    shmem/unix shmem.c
  Log:
  This header file is needed to allow the shared memory "fix" for BeOS to
  work.
  
  Submitted by:   Justin Sherrill <ju...@shiningsilence.com>
                  Peter Moore <pe...@cdws.com.au>
  
  Revision  Changes    Path
  1.18      +4 -0      apr/shmem/unix/shmem.c
  
  Index: shmem.c
  ===================================================================
  RCS file: /home/cvs/apr/shmem/unix/shmem.c,v
  retrieving revision 1.17
  retrieving revision 1.18
  diff -u -r1.17 -r1.18
  --- shmem.c	2000/12/15 12:57:50	1.17
  +++ shmem.c	2001/01/06 17:07:45	1.18
  @@ -57,6 +57,10 @@
   #include "apr_shmem.h"
   #include "apr_errno.h"
   
  +#if BEOS
  +#include <kernel/OS.h>
  +#endif
  +
   struct shmem_t {
       MM *mm;
   #if BEOS