upload http
[bottlenecks.git] / rubbos / app / httpd-2.0.64 / srclib / apr / include / arch / unix / apr_arch_threadproc.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_private.h"
19 #include "apr_thread_proc.h"
20 #include "apr_file_io.h"
21 #include "apr_arch_file_io.h"
22
23 /* System headers required for thread/process library */
24 #if APR_HAVE_PTHREAD_H
25 #include <pthread.h>
26 #endif
27 #ifdef HAVE_SYS_RESOURCE_H
28 #include <sys/resource.h>
29 #endif
30 #if APR_HAVE_SIGNAL_H
31 #include <signal.h>
32 #endif
33 #if APR_HAVE_STRING_H
34 #include <string.h>
35 #endif
36 #if APR_HAVE_SYS_WAIT_H
37 #include <sys/wait.h>
38 #endif
39 #if APR_HAVE_STRING_H
40 #include <string.h>
41 #endif
42 /* End System Headers */
43
44
45 #ifndef THREAD_PROC_H
46 #define THREAD_PROC_H
47
48 #define SHELL_PATH "/bin/sh"
49
50 #if APR_HAS_THREADS
51
52 struct apr_thread_t {
53     apr_pool_t *pool;
54     pthread_t *td;
55     void *data;
56     apr_thread_start_t func;
57     apr_status_t exitval;
58 };
59
60 struct apr_threadattr_t {
61     apr_pool_t *pool;
62     pthread_attr_t *attr;
63 };
64
65 struct apr_threadkey_t {
66     apr_pool_t *pool;
67     pthread_key_t key;
68 };
69
70 struct apr_thread_once_t {
71     pthread_once_t once;
72 };
73
74 #endif
75
76 struct apr_procattr_t {
77     apr_pool_t *pool;
78     apr_file_t *parent_in;
79     apr_file_t *child_in;
80     apr_file_t *parent_out;
81     apr_file_t *child_out;
82     apr_file_t *parent_err;
83     apr_file_t *child_err;
84     char *currdir;
85     apr_int32_t cmdtype;
86     apr_int32_t detached;
87 #ifdef RLIMIT_CPU
88     struct rlimit *limit_cpu;
89 #endif
90 #if defined (RLIMIT_DATA) || defined (RLIMIT_VMEM) || defined(RLIMIT_AS)
91     struct rlimit *limit_mem;
92 #endif
93 #ifdef RLIMIT_NPROC
94     struct rlimit *limit_nproc;
95 #endif
96 #ifdef RLIMIT_NOFILE
97     struct rlimit *limit_nofile;
98 #endif
99     apr_child_errfn_t *errfn;
100     apr_int32_t errchk;
101 };
102
103 #endif  /* ! THREAD_PROC_H */
104