X-Git-Url: https://git.saurik.com/apt.git/blobdiff_plain/8e06abb2587d06891a84414f09f4910429451bf8..1fcbfcb8ba78224fd0e4d532d4fa976f0ea00fef:/apt-pkg/contrib/mmap.h?ds=sidebyside diff --git a/apt-pkg/contrib/mmap.h b/apt-pkg/contrib/mmap.h index 512b8bcf6..3cb6c6468 100644 --- a/apt-pkg/contrib/mmap.h +++ b/apt-pkg/contrib/mmap.h @@ -1,6 +1,6 @@ // -*- mode: cpp; mode: fold -*- // Description /*{{{*/ -// $Id: mmap.h,v 1.6 1998/07/19 04:42:15 jgg Exp $ +// $Id: mmap.h,v 1.8 1999/01/18 06:20:08 jgg Exp $ /* ###################################################################### MMap Class - Provides 'real' mmap or a faked mmap using read(). @@ -22,7 +22,6 @@ ##################################################################### */ /*}}}*/ -// Header section: pkglib #ifndef PKGLIB_MMAP_H #define PKGLIB_MMAP_H @@ -89,7 +88,7 @@ class DynamicMMap : public MMap inline unsigned long WriteString(string S) {return WriteString(S.begin(),S.size());}; void UsePools(Pool &P,unsigned int Count) {Pools = &P; PoolCount = Count;}; - DynamicMMap(FileFd &F,unsigned long Flags,unsigned long WorkSpace = 1024*1024); + DynamicMMap(FileFd &F,unsigned long Flags,unsigned long WorkSpace = 2*1024*1024); virtual ~DynamicMMap(); };