mpm.h revision b99dbaab171d91e1b664397cc40e039d0c087c65
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy/* ====================================================================
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy * The Apache Software License, Version 1.1
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy *
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy * Copyright (c) 2000-2001 The Apache Software Foundation. All rights
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy * reserved.
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy *
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy * Redistribution and use in source and binary forms, with or without
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy * modification, are permitted provided that the following conditions
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy * are met:
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy *
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy * 1. Redistributions of source code must retain the above copyright
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy * notice, this list of conditions and the following disclaimer.
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy *
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy * 2. Redistributions in binary form must reproduce the above copyright
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy * notice, this list of conditions and the following disclaimer in
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy * the documentation and/or other materials provided with the
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy * distribution.
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy *
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy * 3. The end-user documentation included with the redistribution,
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy * if any, must include the following acknowledgment:
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy * "This product includes software developed by the
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy * Apache Software Foundation (http://www.apache.org/)."
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy * Alternately, this acknowledgment may appear in the software itself,
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy * if and wherever such third-party acknowledgments normally appear.
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy *
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy * 4. The names "Apache" and "Apache Software Foundation" must
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy * not be used to endorse or promote products derived from this
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy * software without prior written permission. For written
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy * permission, please contact apache@apache.org.
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy *
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy * 5. Products derived from this software may not be called "Apache",
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy * nor may "Apache" appear in their name, without prior written
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy * permission of the Apache Software Foundation.
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy *
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy * DISCLAIMED. IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy * SUCH DAMAGE.
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy * ====================================================================
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy *
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy * This software consists of voluntary contributions made by many
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy * individuals on behalf of the Apache Software Foundation. For more
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy * information on the Apache Software Foundation, please see
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy * <http://www.apache.org/>.
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy *
* Portions of this software are based upon public domain software
* originally written at the National Center for Supercomputing Applications,
* University of Illinois, Urbana-Champaign.
*/
#ifndef APACHE_MPM_H
#define APACHE_MPM_H
/* mpm.h is the place to make declarations that are MPM specific but that must be
* shared with non-mpm specific code in the server. Hummm, perhaps we can
* move most of this stuff to mpm_common.h?
*/
extern int ap_threads_per_child;
#endif /* APACHE_MPM_H */