summaryrefslogtreecommitdiff
path: root/include/apr_thread_proc.h
diff options
context:
space:
mode:
authorwrowe <wrowe@13f79535-47bb-0310-9956-ffa450edef68>2003-03-03 20:54:50 +0000
committerwrowe <wrowe@13f79535-47bb-0310-9956-ffa450edef68>2003-03-03 20:54:50 +0000
commit70b6e5a88f2d1992e3a585113e360e1d63e375ad (patch)
treeb9c4753f6bf9e664a9a2089714fe663b995a11c5 /include/apr_thread_proc.h
parent198bc1617a0d408dceced58120a9209a36cef7bc (diff)
downloadlibapr-70b6e5a88f2d1992e3a585113e360e1d63e375ad.tar.gz
Brad Nicholes points out that I unconditionally stubbed the functions
yet left their argument type undefined. typedef the apr_other_child_rec_t unconditionally. Also add a little whitespace to make this list legible ;-) git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@64391 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include/apr_thread_proc.h')
-rw-r--r--include/apr_thread_proc.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/include/apr_thread_proc.h b/include/apr_thread_proc.h
index 383891ebd..c439744fc 100644
--- a/include/apr_thread_proc.h
+++ b/include/apr_thread_proc.h
@@ -203,19 +203,21 @@ typedef void (apr_child_errfn_t)(apr_pool_t *proc, apr_status_t err,
/** Opaque Thread structure. */
typedef struct apr_thread_t apr_thread_t;
+
/** Opaque Thread attributes structure. */
typedef struct apr_threadattr_t apr_threadattr_t;
+
/** Opaque Process attributes structure. */
typedef struct apr_procattr_t apr_procattr_t;
+
/** Opaque control variable for one-time atomic variables. */
typedef struct apr_thread_once_t apr_thread_once_t;
/** Opaque thread private address space. */
typedef struct apr_threadkey_t apr_threadkey_t;
-#if APR_HAS_OTHER_CHILD
+
/** Opaque record of child process. */
typedef struct apr_other_child_rec_t apr_other_child_rec_t;
-#endif /* APR_HAS_OTHER_CHILD */
/**
* The prototype for any APR thread worker functions.