You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by tr...@apache.org on 2011/03/14 17:46:30 UTC

svn commit: r1081462 - /apr/apr/trunk/include/apr_thread_proc.h

Author: trawick
Date: Mon Mar 14 16:46:30 2011
New Revision: 1081462

URL: http://svn.apache.org/viewvc?rev=1081462&view=rev
Log:
more hints on APR_KILL_NEVER

Modified:
    apr/apr/trunk/include/apr_thread_proc.h

Modified: apr/apr/trunk/include/apr_thread_proc.h
URL: http://svn.apache.org/viewvc/apr/apr/trunk/include/apr_thread_proc.h?rev=1081462&r1=1081461&r2=1081462&view=diff
==============================================================================
--- apr/apr/trunk/include/apr_thread_proc.h (original)
+++ apr/apr/trunk/include/apr_thread_proc.h Mon Mar 14 16:46:30 2011
@@ -198,7 +198,9 @@ typedef struct apr_other_child_rec_t  ap
 typedef void *(APR_THREAD_FUNC *apr_thread_start_t)(apr_thread_t*, void*);
 
 typedef enum {
-    APR_KILL_NEVER,             /**< process is never sent any signals */
+    APR_KILL_NEVER,             /**< process is never killed (i.e., never sent
+                                 * any signals), but it will be reaped if it exits
+                                 * before the pool is cleaned up */
     APR_KILL_ALWAYS,            /**< process is sent SIGKILL on apr_pool_t cleanup */
     APR_KILL_AFTER_TIMEOUT,     /**< SIGTERM, wait 3 seconds, SIGKILL */
     APR_JUST_WAIT,              /**< wait forever for the process to complete */