summaryrefslogtreecommitdiff
path: root/threadproc/beos
diff options
context:
space:
mode:
authorIvan Zhakov <ivan@apache.org>2023-01-21 16:13:27 +0000
committerIvan Zhakov <ivan@apache.org>2023-01-21 16:13:27 +0000
commit9b4df62cd1117d6b4348c8a1f7871ece024eb413 (patch)
tree6b009aab810e5a22ec6ff0c167af99b0dd5e733e /threadproc/beos
parent545069e7dc77a47168c0667bd7080db008d402de (diff)
parent166a06a11e80a5479a806ebb5a213d1c3e547fc7 (diff)
downloadapr-9b4df62cd1117d6b4348c8a1f7871ece024eb413.tar.gz
Merge thread-name branch (PR 60587) [1]:
* Introduce apr_thread_name_set() and apr_thread_name_get(). [1] https://bz.apache.org/bugzilla/show_bug.cgi?id=60587 [2] https://lists.apache.org/thread/z24logzc6v8tc0p2q3375cc10qo9y5yw git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@1906889 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'threadproc/beos')
-rw-r--r--threadproc/beos/thread.c14
1 files changed, 14 insertions, 0 deletions
diff --git a/threadproc/beos/thread.c b/threadproc/beos/thread.c
index 4f9d0408e..bf297330f 100644
--- a/threadproc/beos/thread.c
+++ b/threadproc/beos/thread.c
@@ -345,3 +345,17 @@ APR_DECLARE(apr_status_t) apr_thread_once(apr_thread_once_t *control,
}
APR_POOL_IMPLEMENT_ACCESSOR(thread)
+
+APR_DECLARE(apr_status_t) apr_thread_name_set(const char* name,
+ apr_thread_t *thread,
+ apr_pool_t *pool)
+{
+ return APR_ENOTIMPL;
+}
+
+APR_DECLARE(apr_status_t) apr_thread_name_get(apr_thread_t *thread,
+ char **name,
+ apr_pool_t pool)
+{
+ return APR_ENOTIMPL;
+}