upload http
[bottlenecks.git] / rubbos / app / httpd-2.0.64 / server / mpm / worker / pod.h
1 /* Licensed to the Apache Software Foundation (ASF) under one or more
2  * contributor license agreements.  See the NOTICE file distributed with
3  * this work for additional information regarding copyright ownership.
4  * The ASF licenses this file to You under the Apache License, Version 2.0
5  * (the "License"); you may not use this file except in compliance with
6  * the License.  You may obtain a copy of the License at
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 #include "apr.h"
18 #include "apr_strings.h"
19 #define APR_WANT_STRFUNC
20 #include "apr_want.h"
21
22 #include "httpd.h"
23 #include "http_config.h"
24 #include "http_log.h"
25 #include "http_main.h"
26 #include "mpm.h"
27 #include "mpm_common.h"
28 #include "ap_mpm.h"
29 #include "ap_listen.h"
30 #include "mpm_default.h"
31
32 #define RESTART_CHAR '$'
33 #define GRACEFUL_CHAR '!'
34
35 #define AP_RESTART  0
36 #define AP_GRACEFUL 1
37
38 typedef struct ap_pod_t ap_pod_t;
39
40 struct ap_pod_t {
41     apr_file_t *pod_in;
42     apr_file_t *pod_out;
43     apr_pool_t *p;
44 };
45
46 AP_DECLARE(apr_status_t) ap_mpm_pod_open(apr_pool_t *p, ap_pod_t **pod);
47 AP_DECLARE(int) ap_mpm_pod_check(ap_pod_t *pod);
48 AP_DECLARE(apr_status_t) ap_mpm_pod_close(ap_pod_t *pod);
49 AP_DECLARE(apr_status_t) ap_mpm_pod_signal(ap_pod_t *pod, int graceful);
50 AP_DECLARE(void) ap_mpm_pod_killpg(ap_pod_t *pod, int num, int graceful);