summaryrefslogtreecommitdiff
path: root/threadproc/beos
diff options
context:
space:
mode:
authorYann Ylavic <ylavic@apache.org>2022-01-25 10:41:15 +0000
committerYann Ylavic <ylavic@apache.org>2022-01-25 10:41:15 +0000
commit367a9c3c50b18fccf2ca899fc1ea01a221928673 (patch)
tree6921a3df72d4aa456c518f84ba06ca17e8e4b7ae /threadproc/beos
parent3c0a292ceeabd8a58a984b3279097f033b44659c (diff)
downloadapr-367a9c3c50b18fccf2ca899fc1ea01a221928673.tar.gz
apr_thread: Follow up to r1897207: Don't NULLify current_thread on exit.
It's not needed, when the thread exits it's not accessible anyway. git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@1897445 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'threadproc/beos')
-rw-r--r--threadproc/beos/thread.c8
1 files changed, 1 insertions, 7 deletions
diff --git a/threadproc/beos/thread.c b/threadproc/beos/thread.c
index 501678373..faa255b63 100644
--- a/threadproc/beos/thread.c
+++ b/threadproc/beos/thread.c
@@ -63,7 +63,7 @@ APR_DECLARE(apr_status_t) apr_threadattr_guardsize_set(apr_threadattr_t *attr,
}
#ifdef APR_HAS_THREAD_LOCAL
-static APR_THREAD_LOCAL apr_thread_t *current_thread;
+static APR_THREAD_LOCAL apr_thread_t *current_thread = NULL;
#endif
static void *dummy_worker(void *opaque)
@@ -81,9 +81,6 @@ static void *dummy_worker(void *opaque)
apr_pool_destroy(thd->pool);
}
-#ifdef APR_HAS_THREAD_LOCAL
- current_thread = NULL;
-#endif
return ret;
}
@@ -212,9 +209,6 @@ APR_DECLARE(void) apr_thread_exit(apr_thread_t *thd, apr_status_t retval)
if (thd->detached) {
apr_pool_destroy(thd->pool);
}
-#ifdef APR_HAS_THREAD_LOCAL
- current_thread = NULL;
-#endif
exit_thread ((status_t)(retval));
}