modified apt-pkg/contrib/mmap.cc to not use the define ...
authorArch Librarian <arch@canonical.com>
Mon, 20 Sep 2004 16:53:10 +0000 (16:53 +0000)
committerArch Librarian <arch@canonical.com>
Mon, 20 Sep 2004 16:53:10 +0000 (16:53 +0000)
Author: doogie
Date: 1999-03-18 03:20:24 GMT
modified apt-pkg/contrib/mmap.cc to not use the define PAGE_SIZE by removing
'#include <sys/user.h>' and adding 'static int PAGE_SIZE = getpagesize();'
to msync();

apt-pkg/contrib/mmap.cc

index fdeb344..0e8c6bd 100644 (file)
@@ -1,6 +1,6 @@
 // -*- mode: cpp; mode: fold -*-
 // Description                                                         /*{{{*/
-// $Id: mmap.cc,v 1.11 1999/02/05 02:26:13 jgg Exp $
+// $Id: mmap.cc,v 1.12 1999/03/18 03:20:24 doogie Exp $
 /* ######################################################################
    
    MMap Class - Provides 'real' mmap or a faked mmap using read().
@@ -31,7 +31,6 @@
 
 #include <sys/mman.h>
 #include <sys/stat.h>
-#include <sys/user.h>
 #include <unistd.h>
 #include <fcntl.h>
                                                                        /*}}}*/
@@ -119,6 +118,8 @@ bool MMap::Sync()
 /* */
 bool MMap::Sync(unsigned long Start,unsigned long Stop)
 {
+       static int PAGE_SIZE = getpagesize();
+
 #ifdef _POSIX_SYNCHRONIZED_IO   
    if ((Flags & ReadOnly) != ReadOnly)
       if (msync((char *)Base+(int)(Start/PAGE_SIZE)*PAGE_SIZE,Stop - Start,MS_SYNC) != 0)