]> granicus.if.org Git - apache/commitdiff
Fix remaining doxygen warnings. "make dox" is now clean with doxygen
authorDaniel Earl Poirier <poirier@apache.org>
Tue, 3 Nov 2009 14:59:24 +0000 (14:59 +0000)
committerDaniel Earl Poirier <poirier@apache.org>
Tue, 3 Nov 2009 14:59:24 +0000 (14:59 +0000)
version 1.5.8.

PR: 48093
Submitted by: Brad Hards
Reviewed by: poirier

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@832442 13f79535-47bb-0310-9956-ffa450edef68

docs/doxygen.conf
include/http_config.h
include/util_cfgtree.h
modules/core/mod_watchdog.h
modules/generators/mod_cgi.h

index 802a0765e8e7a79ca98b5693b9dd94ff08aa4e2c..95e11bc2ae0cb7df1f8393b183e92be921ef7f59 100644 (file)
@@ -24,6 +24,7 @@ PREDEFINED="APR_DECLARE(x)=x" \
        "APR_DECLARE_NONSTD(x)=x" \
        "AP_DECLARE_HOOK(ret,name,args)=ret name args;" \
        "APR_DECLARE_OPTIONAL_FN(ret,name,args)=ret name args;" \
+       "APR_DECLARE_EXTERNAL_HOOK(ns,link,ret,name,args)= ret ns##_hook_##name args;" \
        "AP_DECLARE(x)=x" \
        "AP_DECLARE_NONSTD(x)=x" \
        AP_CORE_DECLARE(x)=x \
index f72b59c5168f71ccbfdb535f8ae44ad625203c0c..4daf3d8c6ee1b31e0d66557437dd7c90da1dd83e 100644 (file)
@@ -335,7 +335,8 @@ struct module_struct {
     void *dynamic_load_handle;
 
     /** A pointer to the next module in the list
-     *  @var module_struct *next */
+     *  @var module_struct *next
+     */
     struct module_struct *next;
 
     /** Magic Cookie to identify a module structure;  It's mainly 
@@ -731,28 +732,28 @@ typedef struct {
 
 /**
  * The topmost module in the list
- * @defvar module *ap_top_module
+ * @var module *ap_top_module
  */
 AP_DECLARE_DATA extern module *ap_top_module;
 
 /**
  * Array of all statically linked modules
- * @defvar module *ap_prelinked_modules[]
+ * @var module *ap_prelinked_modules[]
  */
 AP_DECLARE_DATA extern module *ap_prelinked_modules[];
 /**
  * Array of all statically linked modulenames (symbols)
- * @defvar ap_module_symbol_t ap_prelinked_modulenames[]
+ * @var ap_module_symbol_t ap_prelinked_module_symbols[]
  */
 AP_DECLARE_DATA extern ap_module_symbol_t ap_prelinked_module_symbols[];
 /**
  * Array of all preloaded modules
- * @defvar module *ap_preloaded_modules[]
+ * @var module *ap_preloaded_modules[]
  */
 AP_DECLARE_DATA extern module *ap_preloaded_modules[];
 /**
  * Array of all loaded modules
- * @defvar module **ap_loaded_modules
+ * @var module **ap_loaded_modules
  */
 AP_DECLARE_DATA extern module **ap_loaded_modules;
 
index 911130b913420a0bd08d2ccc1bc1ea0169dd4bdb..4da4c7dd1d9e2b1bc2dbe17209bd0eb43361ee95 100644 (file)
@@ -68,7 +68,6 @@ struct ap_directive_t {
 
 /**
  * The root of the configuration tree
- * @var ap_directive_t *conftree
  */
 AP_DECLARE_DATA extern ap_directive_t *ap_conftree;
 
index 9de553432d240ef9d3065b5862e72b3c0dfcea3e..c02ee28464c130ec34d296649b9722dc2124d7cf 100644 (file)
@@ -23,7 +23,7 @@
  *
  * @defgroup MOD_WATCHDOG watchdog
  * @ingroup  APACHE_MODS
- * @{
+ * \@{
  */
 
 #include "httpd.h"
@@ -162,10 +162,10 @@ APR_DECLARE_OPTIONAL_FN(apr_status_t, ap_watchdog_set_callback_interval,
 
 /**
  * Watchdog require hook.
+ * @param s The server record 
  * @param name Watchdog name.
  * @param parent Non-zero to indicate the parent process watchdog mode.
  * @param singleton Non-zero to indicate the singleton watchdog mode.
- * @param pool The pool used to create the watchdog.
  * @return OK to enable notifications from this watchdog, DECLINED otherwise.
  * @remark This is called in post config phase for all watchdog instances
  *         that have no callbacks registered. Modules using this hook
@@ -180,6 +180,7 @@ APR_DECLARE_EXTERNAL_HOOK(ap, AP_WD, int, watchdog_need, (server_rec *s,
 /**
  * Watchdog initialize hook.
  * It is called after the watchdog thread is initialized.
+ * @param s The server record 
  * @param name Watchdog name.
  * @param pool The pool used to create the watchdog.
  */
@@ -191,6 +192,7 @@ APR_DECLARE_EXTERNAL_HOOK(ap, AP_WD, int, watchdog_init, (
 /**
  * Watchdog terminate hook.
  * It is called when the watchdog thread is terminated.
+ * @param s The server record 
  * @param name Watchdog name.
  * @param pool The pool used to create the watchdog.
  */
@@ -202,6 +204,7 @@ APR_DECLARE_EXTERNAL_HOOK(ap, AP_WD, int, watchdog_exit, (
 /**
  * Fixed interval watchdog hook.
  * It is called regularly on @p AP_WD_TM_INTERVAL interval.
+ * @param s The server record 
  * @param name Watchdog name.
  * @param pool Temporary pool destroyed after the call.
  */
@@ -215,4 +218,4 @@ APR_DECLARE_EXTERNAL_HOOK(ap, AP_WD, int, watchdog_step, (
 #endif
 
 #endif /* MOD_WATCHDOG_H */
-/** @} */
+/** \@} */
index f34a31b6b8d32eb7b2ceede9f53f0028361ee4dc..c5d989177b30b2ed0804c929fb8b7ce090bfb24b 100644 (file)
@@ -51,8 +51,6 @@ typedef struct {
  * @param argv Pointer to the arguments to pass (may be overridden)
  * @param r The current request
  * @param p The pool to allocate correct cmd/argv elements within.
- * @param process_cgi Set true if processing r->filename and r->args
- *                    as a CGI invocation, otherwise false
  * @param e_info pass e_info.cmd_type (Set to APR_SHELLCMD or APR_PROGRAM on entry)
                       and e_info.detached (Should the child start in detached state?)
  * @remark This callback may be registered by the os-specific module