You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by tr...@apache.org on 2009/09/30 20:21:36 UTC

svn commit: r820370 - /httpd/httpd/trunk/modules/core/mod_watchdog.h

Author: trawick
Date: Wed Sep 30 18:21:36 2009
New Revision: 820370

URL: http://svn.apache.org/viewvc?rev=820370&view=rev
Log:
tweak spelling/wording in mod_watchdog documentation

Modified:
    httpd/httpd/trunk/modules/core/mod_watchdog.h

Modified: httpd/httpd/trunk/modules/core/mod_watchdog.h
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/core/mod_watchdog.h?rev=820370&r1=820369&r2=820370&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/core/mod_watchdog.h (original)
+++ httpd/httpd/trunk/modules/core/mod_watchdog.h Wed Sep 30 18:21:36 2009
@@ -110,7 +110,7 @@
 
 /**
  * Callback function used for watchdog.
- * @param state Watchdog state function. See AP_WATCHODG_STATE_ .
+ * @param state Watchdog state function. See AP_WATCHDOG_STATE_ .
  * @param data is what was passed to @ap_watchdog_register_callback function.
  * @param pool Temporary callback pool destroyed after the call.
  * @return APR_SUCCESS to continue calling this callback.
@@ -122,8 +122,8 @@
  * Get watchdog instance.
  * @param watchdog Storage for watchdog instance.
  * @param name Watchdog name.
- * @param parent Non zero to get the parent process watchdog instance.
- * @param singleton Non zero to get the singleton watchdog instance.
+ * @param parent Non-zero to get the parent process watchdog instance.
+ * @param singleton Non-zero to get the singleton watchdog instance.
  * @param pool The pool use.
  * @return APR_SUCCESS if all went well
  * @remark Use @AP_WATCHDOG_DEFAULT to get default watchdog instance.
@@ -166,13 +166,13 @@
 /**
  * Watchdog require hook.
  * @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 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
- *         should ensure their post_config hook is called after watchdog
+ *         should ensure that their post_config hook is called after watchdog
  *         post_config.
  */
 APR_DECLARE_EXTERNAL_HOOK(ap, AP_WD, int, watchdog_need, (server_rec *s,
@@ -182,7 +182,7 @@
 
 /**
  * Watchdog initialize hook.
- * It is called after the watchog thread is initialized.
+ * It is called after the watchdog thread is initialized.
  * @param name Watchdog name.
  * @param pool The pool used to create the watchdog.
  */
@@ -193,7 +193,7 @@
 
 /**
  * Watchdog terminate hook.
- * It is called when the watchog thread is terminated.
+ * It is called when the watchdog thread is terminated.
  * @param name Watchdog name.
  * @param pool The pool used to create the watchdog.
  */