From: Ryan Bloom Date: Sat, 14 Apr 2001 18:20:56 +0000 (+0000) Subject: We need a prototype for ap_show_mpm X-Git-Tag: 2.0.17~16 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=019d25accad29e8024880a2e7ea893c082fd0c69;p=thirdparty%2Fapache%2Fhttpd.git We need a prototype for ap_show_mpm git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@88857 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/include/http_config.h b/include/http_config.h index f429443c4bc..997a680ce1f 100644 --- a/include/http_config.h +++ b/include/http_config.h @@ -780,6 +780,13 @@ AP_DECLARE(void) ap_show_directives(void); */ AP_DECLARE(void) ap_show_modules(void); +/** + * Show the MPM name. Used in reporting modules such as mod_info to + * provide extra information to the user + * @deffunc const char *ap_show_mpm(void) + */ +AP_DECLARE(const char *) ap_show_mpm(void); + /** * Read all config files and setup the server * @param process The process running the server