summaryrefslogtreecommitdiff
path: root/threadproc/beos/threadproc.h
diff options
context:
space:
mode:
Diffstat (limited to 'threadproc/beos/threadproc.h')
-rw-r--r--threadproc/beos/threadproc.h32
1 files changed, 16 insertions, 16 deletions
diff --git a/threadproc/beos/threadproc.h b/threadproc/beos/threadproc.h
index 4cb9c31e0..58c4fb67b 100644
--- a/threadproc/beos/threadproc.h
+++ b/threadproc/beos/threadproc.h
@@ -78,20 +78,20 @@
#define BEOS_MAX_DATAKEYS 128
-struct ap_thread_t {
- ap_pool_t *cntxt;
+struct apr_thread_t {
+ apr_pool_t *cntxt;
thread_id td;
};
-struct ap_threadattr_t {
- ap_pool_t *cntxt;
+struct apr_threadattr_t {
+ apr_pool_t *cntxt;
int32 attr;
int detached;
int joinable;
};
-struct ap_threadkey_t {
- ap_pool_t *cntxt;
+struct apr_threadkey_t {
+ apr_pool_t *cntxt;
int32 key;
};
@@ -109,17 +109,17 @@ struct beos_key {
void (* destructor) (void *);
};
-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;
};
#endif /* ! THREAD_PROC_H */