summaryrefslogtreecommitdiff
path: root/threadproc/os2/thread.c
diff options
context:
space:
mode:
authorYann Ylavic <ylavic@apache.org>2022-01-25 20:16:03 +0000
committerYann Ylavic <ylavic@apache.org>2022-01-25 20:16:03 +0000
commita3d78aae6ed5859177f225775a78e0c57f9aaa34 (patch)
tree67e73d69ee1be870984b68c1fb9d19fc5e88a264 /threadproc/os2/thread.c
parentbd96cb9ad7724d0b55574466bcd09fb42ba6d3d7 (diff)
downloadapr-a3d78aae6ed5859177f225775a78e0c57f9aaa34.tar.gz
apr_thread: Follow up to r1897207: Provide apr_thread_current_after_fork().
thread_local variables are not (always?) reset on fork(), so APR (and the user) needs a way to set the current_thread to NULL. Use apr_thread_current_after_fork() in apr_proc_fork()'s child process. Merge r1897470 from trunk. Submitted by: ylavic Reviewed by: ylavic git-svn-id: https://svn.apache.org/repos/asf/apr/apr/branches/1.8.x@1897471 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'threadproc/os2/thread.c')
-rw-r--r--threadproc/os2/thread.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/threadproc/os2/thread.c b/threadproc/os2/thread.c
index 99ae1d292..44f7e7b11 100644
--- a/threadproc/os2/thread.c
+++ b/threadproc/os2/thread.c
@@ -186,6 +186,13 @@ APR_DECLARE(apr_status_t) apr_thread_current_create(apr_thread_t **current,
return APR_SUCCESS;
}
+APR_DECLARE(void) apr_thread_current_after_fork(void)
+{
+#if APR_HAS_THREAD_LOCAL
+ current_thread = NULL;
+#endif
+}
+
APR_DECLARE(apr_thread_t *) apr_thread_current(void)
{
#if APR_HAS_THREAD_LOCAL