home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 November / CMCD1104.ISO / Software / Complet / Apache / apache_2.0.52-win32-x86-no_ssl.msi / Data.Cab / F277274_mpm.h < prev    next >
C/C++ Source or Header  |  2004-09-23  |  1KB  |  39 lines

  1. /* Copyright 2000-2004 The Apache Software Foundation
  2.  *
  3.  * Licensed under the Apache License, Version 2.0 (the "License");
  4.  * you may not use this file except in compliance with the License.
  5.  * You may obtain a copy of the License at
  6.  *
  7.  *     http://www.apache.org/licenses/LICENSE-2.0
  8.  *
  9.  * Unless required by applicable law or agreed to in writing, software
  10.  * distributed under the License is distributed on an "AS IS" BASIS,
  11.  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12.  * See the License for the specific language governing permissions and
  13.  * limitations under the License.
  14.  */
  15.  
  16. #ifndef APACHE_MPM_H
  17. #define APACHE_MPM_H
  18.  
  19. /* mpm.h is the place to make declarations that are MPM specific but that must be 
  20.  * shared with non-mpm specific code in the server.  Hummm, perhaps we can
  21.  * move most of this stuff to mpm_common.h?
  22.  */
  23.  
  24. #include "scoreboard.h"
  25.  
  26. #define MPM_NAME "WinNT"
  27.  
  28. #define AP_MPM_WANT_SET_PIDFILE
  29. #define AP_MPM_WANT_SET_MAX_REQUESTS
  30. #define AP_MPM_WANT_SET_COREDUMPDIR
  31. #define AP_MPM_WANT_SET_SCOREBOARD
  32. #define AP_MPM_WANT_SET_MAX_MEM_FREE
  33.  
  34. extern int ap_threads_per_child;
  35. extern int ap_thread_limit;
  36. extern server_rec *ap_server_conf;
  37.  
  38. #endif /* APACHE_MPM_H */
  39.