summaryrefslogtreecommitdiff
path: root/include/arch/unix/threadproc.h
diff options
context:
space:
mode:
authordougm <dougm@13f79535-47bb-0310-9956-ffa450edef68>2000-08-02 05:26:45 +0000
committerdougm <dougm@13f79535-47bb-0310-9956-ffa450edef68>2000-08-02 05:26:45 +0000
commit8fcf6e0fadd7ec31d02e7249dc69922b24747c11 (patch)
tree4da0bfd73d36292921960aaabc877a57e680b8c4 /include/arch/unix/threadproc.h
parent5198c260c1982414023e984799ce1c3b04bb6b43 (diff)
downloadlibapr-8fcf6e0fadd7ec31d02e7249dc69922b24747c11.tar.gz
prefix libapr functions and types with apr_
git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@60470 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include/arch/unix/threadproc.h')
-rw-r--r--include/arch/unix/threadproc.h32
1 files changed, 16 insertions, 16 deletions
diff --git a/include/arch/unix/threadproc.h b/include/arch/unix/threadproc.h
index e6d9e36aa..d5f0a679f 100644
--- a/include/arch/unix/threadproc.h
+++ b/include/arch/unix/threadproc.h
@@ -86,33 +86,33 @@
#define SHELL_PATH "/bin/sh"
#if APR_HAS_THREADS
-struct ap_thread_t {
- ap_pool_t *cntxt;
+struct apr_thread_t {
+ apr_pool_t *cntxt;
pthread_t *td;
};
-struct ap_threadattr_t {
- ap_pool_t *cntxt;
+struct apr_threadattr_t {
+ apr_pool_t *cntxt;
pthread_attr_t *attr;
};
-struct ap_threadkey_t {
- ap_pool_t *cntxt;
+struct apr_threadkey_t {
+ apr_pool_t *cntxt;
pthread_key_t key;
};
#endif
-struct ap_procattr_t {
- ap_pool_t *cntxt;
- ap_file_t *parent_in;
- ap_file_t *child_in;
- ap_file_t *parent_out;
- ap_file_t *child_out;
- ap_file_t *parent_err;
- ap_file_t *child_err;
+struct apr_procattr_t {
+ apr_pool_t *cntxt;
+ apr_file_t *parent_in;
+ apr_file_t *child_in;
+ apr_file_t *parent_out;
+ apr_file_t *child_out;
+ apr_file_t *parent_err;
+ apr_file_t *child_err;
char *currdir;
- ap_int32_t cmdtype;
- ap_int32_t detached;
+ apr_int32_t cmdtype;
+ apr_int32_t detached;
#ifdef RLIMIT_CPU
struct rlimit *limit_cpu;
#endif