summaryrefslogtreecommitdiff
path: root/shmem
diff options
context:
space:
mode:
authordreid <dreid@13f79535-47bb-0310-9956-ffa450edef68>2002-01-24 22:02:07 +0000
committerdreid <dreid@13f79535-47bb-0310-9956-ffa450edef68>2002-01-24 22:02:07 +0000
commita0df9f4bf914de42a46ae7034c4b25618a0d4b39 (patch)
treec63ef18796ad7a951e27d2a23dee79f91b75a1bb /shmem
parent4d35b00246f04dab49b5d74705a3259fc9e3782b (diff)
downloadlibapr-a0df9f4bf914de42a46ae7034c4b25618a0d4b39.tar.gz
Fix a small problem with the name of the area we create. This is
temporary but gets the server running again. git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@62826 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'shmem')
-rw-r--r--shmem/beos/shm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/shmem/beos/shm.c b/shmem/beos/shm.c
index 94c8b28b2..65de9e102 100644
--- a/shmem/beos/shm.c
+++ b/shmem/beos/shm.c
@@ -83,7 +83,7 @@ APR_DECLARE(apr_status_t) apr_shm_create(apr_shm_t **m,
/* we MUST allocate in pages, so calculate how big an area we need... */
pagesize = ((reqsize + B_PAGE_SIZE - 1) / B_PAGE_SIZE) * B_PAGE_SIZE;
- newid = create_area(file, (void*)&addr, B_ANY_ADDRESS,
+ newid = create_area("apr_shmem", (void*)&addr, B_ANY_ADDRESS,
pagesize, B_CONTIGUOUS, B_READ_AREA|B_WRITE_AREA);
if (newid < 0)