summaryrefslogtreecommitdiff
path: root/threadproc/netware
diff options
context:
space:
mode:
authorIvan Zhakov <ivan@apache.org>2022-06-27 23:13:52 +0000
committerIvan Zhakov <ivan@apache.org>2022-06-27 23:13:52 +0000
commit7791a5b5497b7dad6f500e2db2df4da1d35cacaf (patch)
tree068fa7aef0a464175de8bfbb102f046b8ec5f5c3 /threadproc/netware
parent7bcf46ab762c90550e499ae1a5a4134ea3d27a8c (diff)
downloadapr-7791a5b5497b7dad6f500e2db2df4da1d35cacaf.tar.gz
On 'thread-name' branch: Add apr_thread_name_get() and apr_thread_name_set()
API to get/set thread name. git-svn-id: https://svn.apache.org/repos/asf/apr/apr/branches/thread-name@1902297 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'threadproc/netware')
-rw-r--r--threadproc/netware/thread.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/threadproc/netware/thread.c b/threadproc/netware/thread.c
index 24122119a..404b42f74 100644
--- a/threadproc/netware/thread.c
+++ b/threadproc/netware/thread.c
@@ -354,4 +354,16 @@ 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(char ** name,
+ apr_thread_t *thread,
+ apr_pool_t *pool)
+{
+ return APR_ENOTIMPL;
+} \ No newline at end of file