summaryrefslogtreecommitdiff
path: root/include/apr_mmap.h
diff options
context:
space:
mode:
authorRyan Bloom <rbb@apache.org>2000-08-05 04:26:46 +0000
committerRyan Bloom <rbb@apache.org>2000-08-05 04:26:46 +0000
commit35288f1c349936a7096d0bb2fbf8a72083fe8124 (patch)
tree8df284708b70144d95cef34d196871b6a67a93f5 /include/apr_mmap.h
parent1f8bfb80a45932e94f37c2988f3776f5966d0f66 (diff)
downloadapr-35288f1c349936a7096d0bb2fbf8a72083fe8124.tar.gz
Document all of the public APR structures with DocBook.
git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@60477 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include/apr_mmap.h')
-rw-r--r--include/apr_mmap.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/include/apr_mmap.h b/include/apr_mmap.h
index 7b57a50f8..5f47ebd5b 100644
--- a/include/apr_mmap.h
+++ b/include/apr_mmap.h
@@ -75,12 +75,17 @@ typedef struct apr_mmap_t apr_mmap_t;
* sense to keep it private, and opening it up makes some stuff easier in
* Apache.
*/
+/** The MMAP structure */
struct apr_mmap_t {
+ /** The pool the mmap structure was allocated out of. */
apr_pool_t *cntxt;
#ifdef BEOS
+ /** An area ID. Only valid on BeOS */
area_id area;
#endif
+ /** The start of the memory mapped area */
void *mm;
+ /** The amount of data in the mmap */
size_t size;
};