summaryrefslogtreecommitdiff
path: root/shmem
diff options
context:
space:
mode:
Diffstat (limited to 'shmem')
-rw-r--r--shmem/os2/shmem.c6
-rw-r--r--shmem/unix/shmem.c6
2 files changed, 6 insertions, 6 deletions
diff --git a/shmem/os2/shmem.c b/shmem/os2/shmem.c
index 6e4dcbebf..49713f406 100644
--- a/shmem/os2/shmem.c
+++ b/shmem/os2/shmem.c
@@ -121,7 +121,7 @@ apr_status_t apr_shm_free(struct shmem_t *m, void *entity)
-apr_status_t apr_get_shm_name(apr_shmem_t *c, apr_shm_name_t **name)
+apr_status_t apr_shm_name_get(apr_shmem_t *c, apr_shm_name_t **name)
{
*name = NULL;
return APR_ANONYMOUS;
@@ -129,14 +129,14 @@ apr_status_t apr_get_shm_name(apr_shmem_t *c, apr_shm_name_t **name)
-apr_status_t apr_set_shm_name(apr_shmem_t *c, apr_shm_name_t *name)
+apr_status_t apr_shm_name_set(apr_shmem_t *c, apr_shm_name_t *name)
{
return APR_ANONYMOUS;
}
-apr_status_t apr_open_shmem(struct shmem_t *m)
+apr_status_t apr_shm_open(struct shmem_t *m)
{
int rc;
diff --git a/shmem/unix/shmem.c b/shmem/unix/shmem.c
index f7c5c9929..1abcd7f1f 100644
--- a/shmem/unix/shmem.c
+++ b/shmem/unix/shmem.c
@@ -110,7 +110,7 @@ apr_status_t apr_shm_free(struct shmem_t *shared, void *entity)
return APR_SUCCESS;
}
-apr_status_t apr_get_shm_name(apr_shmem_t *c, apr_shm_name_t **name)
+apr_status_t apr_shm_name_get(apr_shmem_t *c, apr_shm_name_t **name)
{
#if APR_USES_ANONYMOUS_SHM
*name = NULL;
@@ -125,7 +125,7 @@ apr_status_t apr_get_shm_name(apr_shmem_t *c, apr_shm_name_t **name)
#endif
}
-apr_status_t apr_set_shm_name(apr_shmem_t *c, apr_shm_name_t *name)
+apr_status_t apr_shm_name_set(apr_shmem_t *c, apr_shm_name_t *name)
{
#if APR_USES_ANONYMOUS_SHM
return APR_ANONYMOUS;
@@ -139,7 +139,7 @@ apr_status_t apr_set_shm_name(apr_shmem_t *c, apr_shm_name_t *name)
#endif
}
-apr_status_t apr_open_shmem(struct shmem_t *c)
+apr_status_t apr_shm_open(struct shmem_t *c)
{
#if APR_USES_ANONYMOUS_SHM