summaryrefslogtreecommitdiff
path: root/include/apr_mmap.h
diff options
context:
space:
mode:
authorJeff Trawick <trawick@apache.org>2003-09-03 18:26:58 +0000
committerJeff Trawick <trawick@apache.org>2003-09-03 18:26:58 +0000
commit9b8c9a47ff9801ca8b57d80dbf498ec29a6dcac5 (patch)
tree0ae35cfdcc0d1659349cd1af0623433a6eaf4d1b /include/apr_mmap.h
parent8ef7d115c1268b62acad065e9b98dedf518a5a06 (diff)
downloadapr-9b8c9a47ff9801ca8b57d80dbf498ec29a6dcac5.tar.gz
remove these interfaces:
apr_compare_groups apr_compare_users apr_current_userid apr_explode_localtime apr_explode_time apr_filename_of_pathname apr_get_groupid apr_get_groupname apr_get_home_directory apr_get_userid apr_get_username apr_group_name_get apr_implode_gmt apr_lstat FNM_NOMATCH FNM_NOESCAPE FNM_PATHNAME FNM_PERIOD FNM_CASE_BLIND change the function args to this interface: apr_mmap_dup this function's args changed in a previous commit, so mention that in CHANGES apr_socket_create git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@64607 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include/apr_mmap.h')
-rw-r--r--include/apr_mmap.h9
1 files changed, 1 insertions, 8 deletions
diff --git a/include/apr_mmap.h b/include/apr_mmap.h
index f6255d0ae..d6deccf31 100644
--- a/include/apr_mmap.h
+++ b/include/apr_mmap.h
@@ -118,9 +118,6 @@ struct apr_mmap_t {
void *mm;
/** The amount of data in the mmap */
apr_size_t size;
- /** @deprecated this field is no longer used and will be removed
- * in APR 1.0 */
- int unused;
/** ring of apr_mmap_t's that reference the same
* mmap'ed region; acts in place of a reference count */
APR_RING_ENTRY(apr_mmap_t) link;
@@ -181,13 +178,10 @@ APR_DECLARE(apr_status_t) apr_mmap_create(apr_mmap_t **newmmap,
* @param new_mmap The structure to duplicate into.
* @param old_mmap The mmap to duplicate.
* @param p The pool to use for new_mmap.
- * @param transfer_ownership DEPRECATED: this param is now ignored
- * and should be removed prior to APR 1.0
*/
APR_DECLARE(apr_status_t) apr_mmap_dup(apr_mmap_t **new_mmap,
apr_mmap_t *old_mmap,
- apr_pool_t *p,
- int transfer_ownership);
+ apr_pool_t *p);
#if defined(DOXYGEN)
/**
@@ -195,7 +189,6 @@ APR_DECLARE(apr_status_t) apr_mmap_dup(apr_mmap_t **new_mmap,
* @param new_mmap The structure to duplicate into.
* @param old_mmap The file to transfer.
* @param p The pool to use for new_mmap.
- * @deprecated Just use apr_mmap_dup(). The transfer_ownership flag will
* go away soon anyway.
*/
APR_DECLARE(apr_status_t) apr_mmap_setaside(apr_mmap_t **new_mmap,