Author: gozer Date: Fri Dec 3 22:12:14 2004 New Revision: 109780 URL: http://svn.apache.org/viewcvs?view=rev&rev=109780 Log: Apache::RequestUtil : $r->child_terminate() implemented for non-threaded MPMs.
Modified: perl/modperl/docs/trunk/src/docs/2.0/api/Apache/RequestUtil.pod Modified: perl/modperl/docs/trunk/src/docs/2.0/api/Apache/RequestUtil.pod Url: http://svn.apache.org/viewcvs/perl/modperl/docs/trunk/src/docs/2.0/api/Apache/RequestUtil.pod?view=diff&rev=109780&p1=perl/modperl/docs/trunk/src/docs/2.0/api/Apache/RequestUtil.pod&r1=109779&p2=perl/modperl/docs/trunk/src/docs/2.0/api/Apache/RequestUtil.pod&r2=109780 ============================================================================== --- perl/modperl/docs/trunk/src/docs/2.0/api/Apache/RequestUtil.pod (original) +++ perl/modperl/docs/trunk/src/docs/2.0/api/Apache/RequestUtil.pod Fri Dec 3 22:12:14 2004 @@ -78,6 +78,9 @@ # slurp the contents of $r->filename my $content = ${ $r->slurp_filename() }; + + # terminate the current child after this request + $r->child_terminate(); @@ -165,6 +168,27 @@ debugging) + + +=head2 C<child_terminate> + +Terminate the current worker process as soon as the current request is +over + + $r->child_terminate(); + +=over 4 + +=item obj: C<$r> +( C<L<Apache::RequestRec object|docs::2.0::api::Apache::RequestRec>> ) + +=item ret: no return value + +=item since: 1.99_18 + +=back + +This method is not supported in threaded MPMs --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]