summaryrefslogtreecommitdiff
path: root/mmap
diff options
context:
space:
mode:
authordgaudet <dgaudet@13f79535-47bb-0310-9956-ffa450edef68>2000-04-14 01:38:48 +0000
committerdgaudet <dgaudet@13f79535-47bb-0310-9956-ffa450edef68>2000-04-14 01:38:48 +0000
commitdf74212ca78b04395f406cc01abb92e844660483 (patch)
tree02f9226b718c9c1869fe8c13629ff4feace63705 /mmap
parent1b647fea40c6707b23f7358c6fe0c522dc218d71 (diff)
downloadlibapr-df74212ca78b04395f406cc01abb92e844660483.tar.gz
more documentation movement
git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@59841 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'mmap')
-rw-r--r--mmap/unix/common.c7
-rw-r--r--mmap/unix/mmap.c14
2 files changed, 0 insertions, 21 deletions
diff --git a/mmap/unix/common.c b/mmap/unix/common.c
index 3a6e80401..34eb8fe92 100644
--- a/mmap/unix/common.c
+++ b/mmap/unix/common.c
@@ -69,13 +69,6 @@
#if HAVE_MMAP
-/* ***APRDOC********************************************************
- * ap_status_t ap_mmap_offset(void **addr, ap_mmap_t *mmap, ap_offset_t offset)
- * Move the pointer into the mmap'ed file to the specified offset.
- * arg 1) The pointer to the offset specified.
- * arg 2) The mmap'ed file.
- * arg 3) The offset to move to.
- */
ap_status_t ap_mmap_offset(void **addr, ap_mmap_t *mmap, ap_off_t offset)
{
if (offset < 0 || offset > mmap->size)
diff --git a/mmap/unix/mmap.c b/mmap/unix/mmap.c
index 05b3e2223..0c763a800 100644
--- a/mmap/unix/mmap.c
+++ b/mmap/unix/mmap.c
@@ -76,15 +76,6 @@ ap_status_t mmap_cleanup(void *themmap)
return errno;
}
-/* ***APRDOC********************************************************
- * ap_status_t ap_mmap_create(ap_mmap_t **new, ap_file_t *file, ap_off_t offset)
- * Create a new mmap'ed file out of an existing APR file.
- * arg 1) The newly created mmap'ed file.
- * arg 2) The file turn into an mmap.
- * arg 3) The offset into the file to start the data pointer at.
- * arg 4) The size of the file
- * arg 5) The context to use when creating the mmap.
- */
ap_status_t ap_mmap_create(ap_mmap_t **new, ap_file_t *file, ap_off_t offset,
ap_size_t size, ap_context_t *cont)
{
@@ -112,11 +103,6 @@ ap_status_t ap_mmap_create(ap_mmap_t **new, ap_file_t *file, ap_off_t offset,
return APR_SUCCESS;
}
-/* ***APRDOC********************************************************
- * ap_status_t ap_mmap_delete(ap_mmap_t *mmap)
- * Remove a mmap'ed.
- * arg 1) The mmap'ed file.
- */
ap_status_t ap_mmap_delete(ap_mmap_t *mmap)
{
ap_status_t rv;