mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-09 19:19:59 -04:00
'name' should be on isc_thread_setname argument not isc_thread_create
(cherry picked from commit 15471a63a2)
This commit is contained in:
parent
e2f4b81af2
commit
a2ffb897d1
1 changed files with 2 additions and 2 deletions
|
|
@ -40,7 +40,7 @@ typedef isc_threadresult_t (*isc_threadfunc_t)(isc_threadarg_t);
|
|||
typedef pthread_key_t isc_thread_key_t;
|
||||
|
||||
isc_result_t
|
||||
isc_thread_create(isc_threadfunc_t, isc_threadarg_t, isc_thread_t *name);
|
||||
isc_thread_create(isc_threadfunc_t, isc_threadarg_t, isc_thread_t *);
|
||||
|
||||
void
|
||||
isc_thread_setconcurrency(unsigned int level);
|
||||
|
|
@ -49,7 +49,7 @@ void
|
|||
isc_thread_yield(void);
|
||||
|
||||
void
|
||||
isc_thread_setname(isc_thread_t thread, const char *);
|
||||
isc_thread_setname(isc_thread_t thread, const char *name);
|
||||
|
||||
/* XXX We could do fancier error handling... */
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue