summaryrefslogtreecommitdiff
path: root/include/apr_shm.h
diff options
context:
space:
mode:
authorjerenkrantz <jerenkrantz@13f79535-47bb-0310-9956-ffa450edef68>2002-11-10 08:35:16 +0000
committerjerenkrantz <jerenkrantz@13f79535-47bb-0310-9956-ffa450edef68>2002-11-10 08:35:16 +0000
commitf3c82866bb98fed868cdd8d124f3ab03fe4f3617 (patch)
tree0706c9dcb9d80ee34b95fef0edcc656533723049 /include/apr_shm.h
parent89af3531d0002b29d63bfb2ff24adfda50a5d279 (diff)
downloadlibapr-f3c82866bb98fed868cdd8d124f3ab03fe4f3617.tar.gz
Go through doxygen output and remove as many errors and warnings as I could.
No code changes. (Note removal of #define duplication in apr_poll.h/apr_network_io.h of the APR_POLL* values. This appears to have been an oversight and is now just in apr_poll.h) git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@64009 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include/apr_shm.h')
-rw-r--r--include/apr_shm.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/apr_shm.h b/include/apr_shm.h
index 3a1dee3a0..fdf428e9a 100644
--- a/include/apr_shm.h
+++ b/include/apr_shm.h
@@ -84,7 +84,7 @@ typedef struct apr_shm_t apr_shm_t;
* Create and make accessable a shared memory segment.
* @param m The shared memory structure to create.
* @param reqsize The desired size of the segment.
- * @param file The file to use for shared memory on platforms that
+ * @param filename The file to use for shared memory on platforms that
* require it.
* @param pool the pool from which to allocate the shared memory
* structure.
@@ -118,7 +118,7 @@ APR_DECLARE(apr_status_t) apr_shm_destroy(apr_shm_t *m);
* Attach to a shared memory segment that was created
* by another process.
* @param m The shared memory structure to create.
- * @param file The file used to create the original segment.
+ * @param filename The file used to create the original segment.
* (This MUST match the original filename.)
* @param pool the pool from which to allocate the shared memory
* structure for this process.