summaryrefslogtreecommitdiff
path: root/include/apr_mmap.h
diff options
context:
space:
mode:
authorWilliam A. Rowe Jr <wrowe@apache.org>2001-06-06 16:05:26 +0000
committerWilliam A. Rowe Jr <wrowe@apache.org>2001-06-06 16:05:26 +0000
commitf86fb1e96eb1c5616c4551cd1b244b61f6b8e032 (patch)
treee2cf1112fcc2cf93079ee76cbd7f94b9622f8325 /include/apr_mmap.h
parent08d095927af351647d7d28fca5e0e6648457da6b (diff)
downloadapr-f86fb1e96eb1c5616c4551cd1b244b61f6b8e032.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: https://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;