summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorYann Ylavic <ylavic@apache.org>2021-03-02 00:45:07 +0000
committerYann Ylavic <ylavic@apache.org>2021-03-02 00:45:07 +0000
commit8cd01f3661d6f28211edaa96b258dec7bada4c46 (patch)
tree5721908a21be04bdb4c7d5b7970ab406787027c2 /include
parent17f630750e9e5a40872d8c8c3a48622ed9244d53 (diff)
downloadapr-8cd01f3661d6f28211edaa96b258dec7bada4c46.tar.gz
Remove Windows apr_mmap_t members pstart, psize and poffset.
They are only used locally in apr_mmap_create(). git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@1887062 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include')
-rw-r--r--include/apr_mmap.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/include/apr_mmap.h b/include/apr_mmap.h
index c8c88893c..2bdf81a2a 100644
--- a/include/apr_mmap.h
+++ b/include/apr_mmap.h
@@ -70,10 +70,6 @@ struct apr_mmap_t {
HANDLE mhandle;
/** The start of the real memory page area (mapped view) */
void *mv;
- /** The physical start, size and offset */
- apr_off_t pstart;
- apr_size_t psize;
- apr_off_t poffset;
#else
apr_off_t poffset;
#endif