summaryrefslogtreecommitdiff
path: root/include/apr_shm.h
diff options
context:
space:
mode:
authorWilliam A. Rowe Jr <wrowe@apache.org>2003-03-05 21:22:26 +0000
committerWilliam A. Rowe Jr <wrowe@apache.org>2003-03-05 21:22:26 +0000
commit26a1251cd50b032176c0c5d9bb6626c1a2b7bb52 (patch)
tree665a1cf9958bf86499a3a742b654fe391c3a5705 /include/apr_shm.h
parent1f3331ec7ac24dc7dbefd1ffcd179c7a5f1fbfc0 (diff)
downloadapr-26a1251cd50b032176c0c5d9bb6626c1a2b7bb52.tar.gz
Rebalance our exposed headers such that everything is nested properly
between extern "C" blocks and doxygen blocks, that we never include other headers within our own header's extern "C" block, that we always tag the entire file contents for doxygen (within the APR_HEADER_H only-once block), and generally clean up doxygen so that it is all consistent and generates respectable (although not yet 'great') results. Major TODO after 0.9.2 releases; fill in the apr.h APR_HAVE/APR_HAS and apr_type_t documentation!!! git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@64397 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include/apr_shm.h')
-rw-r--r--include/apr_shm.h16
1 files changed, 9 insertions, 7 deletions
diff --git a/include/apr_shm.h b/include/apr_shm.h
index 15408cc12..aa5764db5 100644
--- a/include/apr_shm.h
+++ b/include/apr_shm.h
@@ -55,6 +55,11 @@
#ifndef APR_SHM_H
#define APR_SHM_H
+/**
+ * @file apr_shm.h
+ * @brief APR Shared Memory Routines
+ */
+
#include "apr.h"
#include "apr_pools.h"
#include "apr_errno.h"
@@ -64,13 +69,8 @@ extern "C" {
#endif /* __cplusplus */
/**
- * @file apr_shm.h
- * @brief APR Shared Memory Routines
- */
-
-/**
- * @defgroup APR_SHM Shared Memory Routines
- * @ingroup APR
+ * @defgroup apr_shm Shared Memory Routines
+ * @ingroup APR
* @{
*/
@@ -156,6 +156,8 @@ APR_DECLARE(apr_size_t) apr_shm_size_get(const apr_shm_t *m);
*/
APR_POOL_DECLARE_ACCESSOR(shm);
+/** @} */
+
#ifdef __cplusplus
}
#endif