"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 \
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
/**
* 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;
/**
* The root of the configuration tree
- * @var ap_directive_t *conftree
*/
AP_DECLARE_DATA extern ap_directive_t *ap_conftree;
*
* @defgroup MOD_WATCHDOG watchdog
* @ingroup APACHE_MODS
- * @{
+ * \@{
*/
#include "httpd.h"
/**
* 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
/**
* 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.
*/
/**
* 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.
*/
/**
* 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.
*/
#endif
#endif /* MOD_WATCHDOG_H */
-/** @} */
+/** \@} */
* @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