summaryrefslogtreecommitdiff
path: root/include/apr_mmap.h
diff options
context:
space:
mode:
authorwrowe <wrowe@13f79535-47bb-0310-9956-ffa450edef68>2001-06-06 16:05:26 +0000
committerwrowe <wrowe@13f79535-47bb-0310-9956-ffa450edef68>2001-06-06 16:05:26 +0000
commit1f803c0151f1006bc872d9c06607928fd71c53a5 (patch)
treee2cf1112fcc2cf93079ee76cbd7f94b9622f8325 /include/apr_mmap.h
parenta8d2db45ab599607495f7f65e22c589fc632f4fc (diff)
downloadlibapr-1f803c0151f1006bc872d9c06607928fd71c53a5.tar.gz
*) Complete the implementation of LARGEFILE support on Win32, although
the mmap semantics still need a touch of work. *) Fix the APR_XTHREAD support, and apr_sendfile mechanics, so we can handle cross-threaded file handles on Win32. Sorry, it's rather hard to untangle one from the other to create two patches. git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@61712 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include/apr_mmap.h')
-rw-r--r--include/apr_mmap.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/apr_mmap.h b/include/apr_mmap.h
index c6060e140..99abc3831 100644
--- a/include/apr_mmap.h
+++ b/include/apr_mmap.h
@@ -96,9 +96,9 @@ struct apr_mmap_t {
/** The start of the real memory page area (mapped view) */
void *mv;
/** The physical start, size and offset */
- apr_off_t pstart;
- apr_off_t psize;
- apr_off_t poffset;
+ apr_off_t pstart;
+ apr_size_t psize;
+ apr_off_t poffset;
#endif
/** The start of the memory mapped area */
void *mm;