wrowe       01/04/02 22:55:51

  Modified:    include  apr_mmap.h
  Log:
    Here's food for thought ... how big is a mmap, the size of the mapped
    memory, or the size of the file that can be mapped?
  
  Revision  Changes    Path
  1.22      +4 -4      apr/include/apr_mmap.h
  
  Index: apr_mmap.h
  ===================================================================
  RCS file: /home/cvs/apr/include/apr_mmap.h,v
  retrieving revision 1.21
  retrieving revision 1.22
  diff -u -r1.21 -r1.22
  --- apr_mmap.h        2001/02/16 04:15:46     1.21
  +++ apr_mmap.h        2001/04/03 05:55:50     1.22
  @@ -96,14 +96,14 @@
       /** The start of the real memory page area (mapped view) */
       void *mv;
       /** The physical start, size and offset */
  -    size_t pstart;
  -    size_t psize;
  -    size_t poffset;
  +    apr_off_t pstart;
  +    apr_off_t psize;
  +    apr_off_t poffset;
   #endif
       /** The start of the memory mapped area */
       void *mm;
       /** The amount of data in the mmap */
  -    size_t size;
  +    apr_off_t size;
   };
   
   #if APR_HAS_MMAP
  
  
  

Reply via email to