diff options
author | Ivan Zhakov <ivan@apache.org> | 2023-01-21 16:13:27 +0000 |
---|---|---|
committer | Ivan Zhakov <ivan@apache.org> | 2023-01-21 16:13:27 +0000 |
commit | 9b4df62cd1117d6b4348c8a1f7871ece024eb413 (patch) | |
tree | 6b009aab810e5a22ec6ff0c167af99b0dd5e733e /threadproc/netware/thread.c | |
parent | 545069e7dc77a47168c0667bd7080db008d402de (diff) | |
parent | 166a06a11e80a5479a806ebb5a213d1c3e547fc7 (diff) | |
download | apr-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/netware/thread.c')
-rw-r--r-- | threadproc/netware/thread.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/threadproc/netware/thread.c b/threadproc/netware/thread.c index 8d3bfd2b0..822d2e24f 100644 --- a/threadproc/netware/thread.c +++ b/threadproc/netware/thread.c @@ -356,4 +356,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 |