git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@83355
13f79535-47bb-0310-9956-
ffa450edef68
/* predicate indicating if a graceful stop has been requested ...
used by the connection loop */
-API_EXPORT(int) ap_mpm_graceful_stop(void);
+API_EXPORT(int) ap_graceful_stop_signalled(void);
/* a mutex which synchronizes threads within one process */
typedef struct ap_thread_mutex ap_thread_mutex;
ap_destroy_pool(r->pool);
- if (ap_mpm_graceful_stop()) {
+ if (ap_graceful_stop_signalled()) {
/* XXX: hey wait, this should do a lingering_close! */
ap_bclose(c->client);
return;