summaryrefslogtreecommitdiff
path: root/include/apr_mmap.h
diff options
context:
space:
mode:
authorjwoolley <jwoolley@13f79535-47bb-0310-9956-ffa450edef68>2003-09-03 19:53:28 +0000
committerjwoolley <jwoolley@13f79535-47bb-0310-9956-ffa450edef68>2003-09-03 19:53:28 +0000
commitc212bdf7ae8ca4fbc925b52ad4e6af4e61aac668 (patch)
tree86ee108bfd03f44995b56d0192297c7313d1432f /include/apr_mmap.h
parent23f382a2e188a758a067eda36be46cfe071719a2 (diff)
downloadlibapr-c212bdf7ae8ca4fbc925b52ad4e6af4e61aac668.tar.gz
axe this entirely
git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@64609 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include/apr_mmap.h')
-rw-r--r--include/apr_mmap.h15
1 files changed, 0 insertions, 15 deletions
diff --git a/include/apr_mmap.h b/include/apr_mmap.h
index d6deccf31..df380705d 100644
--- a/include/apr_mmap.h
+++ b/include/apr_mmap.h
@@ -183,21 +183,6 @@ APR_DECLARE(apr_status_t) apr_mmap_dup(apr_mmap_t **new_mmap,
apr_mmap_t *old_mmap,
apr_pool_t *p);
-#if defined(DOXYGEN)
-/**
- * Transfer the specified MMAP to a different pool
- * @param new_mmap The structure to duplicate into.
- * @param old_mmap The file to transfer.
- * @param p The pool to use for new_mmap.
- * go away soon anyway.
- */
-APR_DECLARE(apr_status_t) apr_mmap_setaside(apr_mmap_t **new_mmap,
- apr_mmap_t *old_mmap,
- apr_pool_t *p);
-#else
-#define apr_mmap_setaside(new_mmap, old_mmap, p) apr_mmap_dup(new_mmap, old_mmap, p, 1)
-#endif /* DOXYGEN */
-
/**
* Remove a mmap'ed.
* @param mm The mmap'ed file.