diff options
author | Ian Holsman <ianh@apache.org> | 2005-08-29 01:03:59 +0200 |
---|---|---|
committer | Ian Holsman <ianh@apache.org> | 2005-08-29 01:03:59 +0200 |
commit | 8c1e315d3f23dd93529fd9605da571c4af9dfbf6 (patch) | |
tree | a328c4fb500e40c2f642aee3561f334387760c9f /os/unix | |
parent | Add graceful-stop to the list of new features. (diff) | |
download | apache2-8c1e315d3f23dd93529fd9605da571c4af9dfbf6.tar.xz apache2-8c1e315d3f23dd93529fd9605da571c4af9dfbf6.zip |
Doxygen fixup / cleanup
submited by: Neale Ranns neale ranns.org
reviewed by: Ian Holsman
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@263931 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'os/unix')
-rw-r--r-- | os/unix/os.h | 12 | ||||
-rw-r--r-- | os/unix/unixd.h | 10 |
2 files changed, 21 insertions, 1 deletions
diff --git a/os/unix/os.h b/os/unix/os.h index 4370c22931..e3b5b61b99 100644 --- a/os/unix/os.h +++ b/os/unix/os.h @@ -14,6 +14,17 @@ * limitations under the License. */ +/** + * @file unix/os.h + * @brief This file in included in all Apache source code. It contains definitions + * of facilities available on _this_ operating system (HAVE_* macros), + * and prototypes of OS specific functions defined in os.c or os-inline.c + * + * @defgroup APACHE_OS_UNIX unix + * @ingroup APACHE_OS + * @{ + */ + #ifndef APACHE_OS_H #define APACHE_OS_H @@ -34,3 +45,4 @@ pid_t os_fork(const char *user); #endif #endif /* !APACHE_OS_H */ +/** @} */ diff --git a/os/unix/unixd.h b/os/unix/unixd.h index 483a101057..234c2f0f4f 100644 --- a/os/unix/unixd.h +++ b/os/unix/unixd.h @@ -14,6 +14,14 @@ * limitations under the License. */ +/** + * @file unixd.h + * @brief common stuff that unix MPMs will want + * + * @addtogroup APACHE_OS_UNIX + * @{ + */ + #ifndef UNIXD_H #define UNIXD_H @@ -48,7 +56,6 @@ typedef struct { AP_DECLARE_HOOK(ap_unix_identity_t *, get_suexec_identity,(const request_rec *r)) -/* common stuff that unix MPMs will want */ /* Default user name and group name. These may be specified as numbers by * placing a # before a number */ @@ -107,3 +114,4 @@ AP_INIT_TAKE1("Group", unixd_set_group, NULL, RSRC_CONF, \ "Effective group id for this server") #endif +/** @} */ |