You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@httpd.apache.org by Takashi Sato <se...@lans-tv.com> on 2008/04/07 16:43:35 UTC

Re: svn commit: r645437 - in /httpd/httpd/trunk: include/ server/mpm/beos/ server/mpm/experimental/event/ server/mpm/experimental/leader/ server/mpm/mpmt_os2/ server/mpm/netware/ server/mpm/prefork/ server/mpm/winnt/ server/mpm/worker/

On Mon, 07 Apr 2008 10:00:34 -0000
pquerna@apache.org wrote:

> Author: pquerna
> Date: Mon Apr  7 03:00:32 2008
> New Revision: 645437
> 
> URL: http://svn.apache.org/viewvc?rev=645437&view=rev
> Log:
> Remove ap_graceful_stop_signalled from all MPMs.
(snip)
> Modified: httpd/httpd/trunk/include/ap_mpm.h
> URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/include/ap_mpm.h?rev=645437&r1=645436&r2=645437&view=diff
> ==============================================================================
> --- httpd/httpd/trunk/include/ap_mpm.h (original)
> +++ httpd/httpd/trunk/include/ap_mpm.h Mon Apr  7 03:00:32 2008
> @@ -91,14 +91,6 @@
>  AP_DECLARE(int) ap_mpm_run(apr_pool_t *pconf, apr_pool_t *plog, server_rec *server_conf);
>  
>  /**
> - * predicate indicating if a graceful stop has been requested ...
> - * used by the connection loop 
> - * @return 1 if a graceful stop has been requested, 0 otherwise
> - * @fn int ap_graceful_stop_signalled(*void)
> - */
> -AP_DECLARE(int) ap_graceful_stop_signalled(void);
> -
> -/**
>   * Spawn a process with privileges that another module has requested
>   * @param r The request_rec of the current request
>   * @param newproc The resulting process handle.
> 

Doesn't this require a major bump?

Re: svn commit: r645437 - in /httpd/httpd/trunk: include/ server/mpm/beos/ server/mpm/experimental/event/ server/mpm/experimental/leader/ server/mpm/mpmt_os2/ server/mpm/netware/ server/mpm/prefork/ server/mpm/winnt/ server/mpm/worker/

Posted by Paul Querna <ch...@force-elite.com>.
Takashi Sato wrote:
> On Mon, 07 Apr 2008 10:00:34 -0000
> pquerna@apache.org wrote:
> 
>> Author: pquerna
>> Date: Mon Apr  7 03:00:32 2008
>> New Revision: 645437
>>
>> URL: http://svn.apache.org/viewvc?rev=645437&view=rev
>> Log:
>> Remove ap_graceful_stop_signalled from all MPMs.
> (snip)
....
> Doesn't this require a major bump?

Well, I thought it didn't.

I thought it was hidden behind CORE_PRIVATE.

But I guess it wasn't.

Added major bump in r645551.

Thanks,

-Paul