Searched refs:entry (Results 1 – 11 of 11) sorted by relevance
/libuv/src/win/ |
H A D | thread.c | 69 void (*entry)(void* arg); member 86 ctx.entry(ctx.arg); in uv__thread_start() 92 int uv_thread_create(uv_thread_t *tid, void (*entry)(void *arg), void *arg) { in uv_thread_create() 95 return uv_thread_create_ex(tid, ¶ms, entry, arg); in uv_thread_create() 100 void (*entry)(void *arg), in uv_thread_create_ex() 126 ctx->entry = entry; in uv_thread_create_ex()
|
/libuv/src/unix/ |
H A D | thread.c | 123 int uv_thread_create(uv_thread_t *tid, void (*entry)(void *arg), void *arg) { in uv_thread_create() 126 return uv_thread_create_ex(tid, ¶ms, entry, arg); in uv_thread_create() 131 void (*entry)(void *arg), in uv_thread_create_ex() 171 f.in = entry; in uv_thread_create_ex()
|
H A D | linux.c | 258 RB_ENTRY(watcher_list) entry; 289 RB_GENERATE_STATIC(watcher_root, watcher_list, entry, compare_watchers) in RB_GENERATE_STATIC() argument
|
/libuv/docs/src/ |
H A D | threading.rst | 77 .. c:function:: int uv_thread_create(uv_thread_t* tid, uv_thread_cb entry, void* arg) 81 …hread_create_ex(uv_thread_t* tid, const uv_thread_options_t* params, uv_thread_cb entry, void* arg)
|
H A D | fs_event.rst | 72 * and makes fs_event report only changes to the directory entry itself. This
|
H A D | misc.rst | 571 Gets a subset of the password file entry for the current effective uid (not 583 Gets a subset of the password file entry for the provided uid. 595 Gets a subset of the group file entry for the provided uid.
|
H A D | fs.rst | 335 get `ent` populated with the next directory entry data. When there are no 342 On Linux, getting the type of an entry is only supported by some file systems (btrfs, ext2,
|
/libuv/ |
H A D | CONTRIBUTING.md | 147 the way entry points are declared, etc.).
|
H A D | ChangeLog | 2244 * distcheck: remove duplicate test/ entry (Jameson Nash) 3619 * doc: add missing entry in uv_fs_type enum (Michele Caini)
|
/libuv/docs/src/guide/ |
H A D | threads.rst | 52 The second parameter is the function which will serve as the entry point for 106 uv_thread_create(thread_id, entry, (void *)a_mutex);
|
/libuv/include/ |
H A D | uv.h | 1872 UV_EXTERN int uv_thread_create(uv_thread_t* tid, uv_thread_cb entry, void* arg); 1889 uv_thread_cb entry,
|
Completed in 33 milliseconds