summaryrefslogtreecommitdiff
path: root/mmap
diff options
context:
space:
mode:
authorDoug MacEachern <dougm@apache.org>2001-02-08 07:45:23 +0000
committerDoug MacEachern <dougm@apache.org>2001-02-08 07:45:23 +0000
commitbc1b73cb6002c158ead8d736f25eb70d5124ecda (patch)
tree136752321dd3e22c22463c9ab35a700ab0507729 /mmap
parent2d3db4e26d42b1fd65bb65bc17f247b0c78a25f6 (diff)
downloadapr-bc1b73cb6002c158ead8d736f25eb70d5124ecda.tar.gz
renaming various functions for consistency sake
see: http://apr.apache.org/~dougm/apr_rename.pl PR: Obtained from: Submitted by: Reviewed by: git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@61194 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'mmap')
-rw-r--r--mmap/unix/mmap.c8
-rw-r--r--mmap/win32/mmap.c6
2 files changed, 7 insertions, 7 deletions
diff --git a/mmap/unix/mmap.c b/mmap/unix/mmap.c
index 948fc680a..09ae1da01 100644
--- a/mmap/unix/mmap.c
+++ b/mmap/unix/mmap.c
@@ -120,7 +120,7 @@ apr_status_t apr_mmap_create(apr_mmap_t **new, apr_file_t *file,
#ifdef BEOS
/* XXX: mmap shouldn't really change the seek offset */
- apr_seek(file, APR_SET, &offset);
+ apr_file_seek(file, APR_SET, &offset);
if (flag & APR_MMAP_WRITE) {
native_flags |= B_WRITE_AREA;
}
@@ -166,8 +166,8 @@ apr_status_t apr_mmap_create(apr_mmap_t **new, apr_file_t *file,
(*new)->cntxt = cont;
/* register the cleanup... */
- apr_register_cleanup((*new)->cntxt, (void*)(*new), mmap_cleanup,
- apr_null_cleanup);
+ apr_pool_cleanup_register((*new)->cntxt, (void*)(*new), mmap_cleanup,
+ apr_pool_cleanup_null);
return APR_SUCCESS;
}
@@ -179,7 +179,7 @@ apr_status_t apr_mmap_delete(apr_mmap_t *mmap)
return APR_ENOENT;
if ((rv = mmap_cleanup(mmap)) == APR_SUCCESS) {
- apr_kill_cleanup(mmap->cntxt, mmap, mmap_cleanup);
+ apr_pool_cleanup_kill(mmap->cntxt, mmap, mmap_cleanup);
return APR_SUCCESS;
}
return rv;
diff --git a/mmap/win32/mmap.c b/mmap/win32/mmap.c
index 28c522469..b42ab98e8 100644
--- a/mmap/win32/mmap.c
+++ b/mmap/win32/mmap.c
@@ -147,8 +147,8 @@ APR_DECLARE(apr_status_t) apr_mmap_create(apr_mmap_t **new, apr_file_t *file,
(*new)->cntxt = cont;
/* register the cleanup... */
- apr_register_cleanup((*new)->cntxt, (void*)(*new), mmap_cleanup,
- apr_null_cleanup);
+ apr_pool_cleanup_register((*new)->cntxt, (void*)(*new), mmap_cleanup,
+ apr_pool_cleanup_null);
return APR_SUCCESS;
}
@@ -157,7 +157,7 @@ APR_DECLARE(apr_status_t) apr_mmap_delete(apr_mmap_t *mmap)
apr_status_t rv;
if ((rv = mmap_cleanup(mmap)) == APR_SUCCESS) {
- apr_kill_cleanup(mmap->cntxt, mmap, mmap_cleanup);
+ apr_pool_cleanup_kill(mmap->cntxt, mmap, mmap_cleanup);
return APR_SUCCESS;
}
return rv;