1
0
mirror of https://github.com/libuv/libuv synced 2025-03-28 21:13:16 +00:00

thread: add uv_thread_cb typedef

To keep with convention, add a typedef for the function called that
initializes the new thread.

Signed-off-by: Fedor Indutny <fedor@indutny.com>
This commit is contained in:
Trevor Norris 2014-04-30 15:11:24 -07:00 committed by Fedor Indutny
parent b5548f18c9
commit 32597100b8

View File

@ -2204,8 +2204,14 @@ UV_EXTERN void uv_key_delete(uv_key_t* key);
UV_EXTERN void* uv_key_get(uv_key_t* key);
UV_EXTERN void uv_key_set(uv_key_t* key, void* value);
UV_EXTERN int uv_thread_create(uv_thread_t *tid,
void (*entry)(void *arg), void *arg);
/*
* Callback that is invoked to initialize thread execution.
*
* `arg` is the same value that was passed to uv_thread_create().
*/
typedef void (*uv_thread_cb)(void* arg);
UV_EXTERN int uv_thread_create(uv_thread_t* tid, uv_thread_cb entry, void* arg);
UV_EXTERN unsigned long uv_thread_self(void);
UV_EXTERN int uv_thread_join(uv_thread_t *tid);