mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-11 10:01:15 -04:00
parent
d0c3b241e5
commit
0532602218
2 changed files with 3 additions and 3 deletions
|
|
@ -20,7 +20,7 @@ void
|
|||
isc_thread_setconcurrency(unsigned int level);
|
||||
|
||||
void
|
||||
isc_thread_setname(isc_thread_t, const char *);
|
||||
isc_thread_setname(isc_thread_t thread, const char *name);
|
||||
|
||||
#define isc_thread_self() ((unsigned long)0)
|
||||
#define isc_thread_yield() ((void)0)
|
||||
|
|
|
|||
|
|
@ -31,7 +31,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 *);
|
||||
isc_thread_create(isc_threadfunc_t, isc_threadarg_t, isc_thread_t *name);
|
||||
|
||||
void
|
||||
isc_thread_setconcurrency(unsigned int level);
|
||||
|
|
@ -40,7 +40,7 @@ void
|
|||
isc_thread_yield(void);
|
||||
|
||||
void
|
||||
isc_thread_setname(isc_thread_t, const char *);
|
||||
isc_thread_setname(isc_thread_t thread, const char *);
|
||||
|
||||
/* XXX We could do fancier error handling... */
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue