summaryrefslogtreecommitdiff
path: root/mmap
diff options
context:
space:
mode:
authordougm <dougm@13f79535-47bb-0310-9956-ffa450edef68>2000-08-02 05:26:45 +0000
committerdougm <dougm@13f79535-47bb-0310-9956-ffa450edef68>2000-08-02 05:26:45 +0000
commit8fcf6e0fadd7ec31d02e7249dc69922b24747c11 (patch)
tree4da0bfd73d36292921960aaabc877a57e680b8c4 /mmap
parent5198c260c1982414023e984799ce1c3b04bb6b43 (diff)
downloadlibapr-8fcf6e0fadd7ec31d02e7249dc69922b24747c11.tar.gz
prefix libapr functions and types with apr_
git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@60470 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'mmap')
-rw-r--r--mmap/unix/common.c2
-rw-r--r--mmap/unix/mmap.c22
2 files changed, 12 insertions, 12 deletions
diff --git a/mmap/unix/common.c b/mmap/unix/common.c
index 25597c56a..f2a84438f 100644
--- a/mmap/unix/common.c
+++ b/mmap/unix/common.c
@@ -68,7 +68,7 @@
#if APR_HAS_MMAP || defined(BEOS)
-ap_status_t ap_mmap_offset(void **addr, ap_mmap_t *mmap, ap_off_t offset)
+apr_status_t apr_mmap_offset(void **addr, apr_mmap_t *mmap, apr_off_t offset)
{
if (offset < 0 || offset > mmap->size)
return APR_EINVAL;
diff --git a/mmap/unix/mmap.c b/mmap/unix/mmap.c
index d708b977e..199b6fc74 100644
--- a/mmap/unix/mmap.c
+++ b/mmap/unix/mmap.c
@@ -79,9 +79,9 @@
#if APR_HAS_MMAP || defined(BEOS)
-static ap_status_t mmap_cleanup(void *themmap)
+static apr_status_t mmap_cleanup(void *themmap)
{
- ap_mmap_t *mm = themmap;
+ apr_mmap_t *mm = themmap;
int rv;
#ifdef BEOS
rv = delete_area(mm->area);
@@ -101,8 +101,8 @@ static ap_status_t mmap_cleanup(void *themmap)
return errno;
}
-ap_status_t ap_mmap_create(ap_mmap_t **new, ap_file_t *file, ap_off_t offset,
- ap_size_t size, ap_pool_t *cont)
+apr_status_t apr_mmap_create(apr_mmap_t **new, apr_file_t *file, apr_off_t offset,
+ apr_size_t size, apr_pool_t *cont)
{
#ifdef BEOS
void *mm;
@@ -115,11 +115,11 @@ ap_status_t ap_mmap_create(ap_mmap_t **new, ap_file_t *file, ap_off_t offset,
if (file == NULL || file->filedes == -1 || file->buffered)
return APR_EBADF;
- (*new) = (ap_mmap_t *)ap_pcalloc(cont, sizeof(ap_mmap_t));
+ (*new) = (apr_mmap_t *)apr_pcalloc(cont, sizeof(apr_mmap_t));
#ifdef BEOS
/* XXX: mmap shouldn't really change the seek offset */
- ap_seek(file, APR_SET, &offset);
+ apr_seek(file, APR_SET, &offset);
pages = ((size -1) / B_PAGE_SIZE) + 1;
aid = create_area(areaname, &mm , B_ANY_ADDRESS, pages * B_PAGE_SIZE,
@@ -148,20 +148,20 @@ ap_status_t ap_mmap_create(ap_mmap_t **new, ap_file_t *file, ap_off_t offset,
(*new)->cntxt = cont;
/* register the cleanup... */
- ap_register_cleanup((*new)->cntxt, (void*)(*new), mmap_cleanup,
- ap_null_cleanup);
+ apr_register_cleanup((*new)->cntxt, (void*)(*new), mmap_cleanup,
+ apr_null_cleanup);
return APR_SUCCESS;
}
-ap_status_t ap_mmap_delete(ap_mmap_t *mmap)
+apr_status_t apr_mmap_delete(apr_mmap_t *mmap)
{
- ap_status_t rv;
+ apr_status_t rv;
if (mmap->mm == (caddr_t) -1)
return APR_ENOENT;
if ((rv = mmap_cleanup(mmap)) == APR_SUCCESS) {
- ap_kill_cleanup(mmap->cntxt, mmap, mmap_cleanup);
+ apr_kill_cleanup(mmap->cntxt, mmap, mmap_cleanup);
return APR_SUCCESS;
}
return rv;