~ubuntu-branches/ubuntu/feisty/apache2/feisty

« back to all changes in this revision

Viewing changes to srclib/apr/include/arch/unix/apr_arch_threadproc.h

  • Committer: Bazaar Package Importer
  • Author(s): Andreas Barth
  • Date: 2006-12-09 21:05:45 UTC
  • mfrom: (0.6.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20061209210545-h70s0xaqc2v8vqr2
Tags: 2.2.3-3.2
* Non-maintainer upload.
* 043_ajp_connection_reuse: Patch from upstream Bugzilla, fixing a critical
  issue with regard to connection reuse in mod_proxy_ajp.
  Closes: #396265

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* Copyright 2000-2005 The Apache Software Foundation or its licensors, as
 
2
 * applicable.
 
3
 *
 
4
 * Licensed under the Apache License, Version 2.0 (the "License");
 
5
 * you may not use this file except in compliance with the License.
 
6
 * 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
    apr_uid_t   uid;
 
102
    apr_gid_t   gid;
 
103
};
 
104
 
 
105
#endif  /* ! THREAD_PROC_H */
 
106