/netbsd-src/external/mit/libuv/dist/docs/src/ |
H A D | threadpool.rst | 18 function makes use of the threadpool (i.e. when using :c:func:`uv_queue_work`) 37 Callback passed to :c:func:`uv_queue_work` which will be run on the thread 42 Callback passed to :c:func:`uv_queue_work` which will be called on the loop 61 .. c:function:: int uv_queue_work(uv_loop_t* loop, uv_work_t* req, uv_work_cb work_cb, uv_after_wor…
|
H A D | design.rst | 136 * User specified code via :c:func:`uv_queue_work`
|
/netbsd-src/external/mit/libuv/dist/test/ |
H A D | test-threadpool.c | 50 r = uv_queue_work(uv_default_loop(), &work_req, work_cb, after_work_cb); in TEST_IMPL() 66 r = uv_queue_work(uv_default_loop(), &work_req, NULL, after_work_cb); in TEST_IMPL()
|
H A D | benchmark-queue-work.c | 43 ASSERT_EQ(0, uv_queue_work(req->loop, req, work_cb, after_work_cb)); in after_work_cb() 60 ASSERT_EQ(0, uv_queue_work(loop, &work, work_cb, after_work_cb)); in BENCHMARK_IMPL()
|
H A D | test-threadpool-cancel.c | 77 ASSERT(0 == uv_queue_work(loop, pause_reqs + i, work_cb, done_cb)); in saturate_threadpool() 267 ASSERT(0 == uv_queue_work(loop, reqs + i, work2_cb, done2_cb)); in TEST_IMPL() 340 ASSERT(0 == uv_queue_work(loop, &req, (uv_work_cb) abort, nop_done_cb)); in TEST_IMPL()
|
H A D | test-loop-alive.c | 58 r = uv_queue_work(uv_default_loop(), &work_req, work_cb, after_work_cb); in TEST_IMPL()
|
H A D | test-loop-close.c | 69 ASSERT(0 == uv_queue_work(&loop, in TEST_IMPL()
|
H A D | test-fork.c | 628 r = uv_queue_work(loop, &work_req, work_cb, after_work_cb); in assert_run_work()
|
/netbsd-src/external/mit/libuv/dist/docs/code/progress/ |
H A D | main.c | 44 uv_queue_work(loop, &req, fake_download, after); in main()
|
/netbsd-src/external/mit/libuv/dist/docs/code/queue-work/ |
H A D | main.c | 40 uv_queue_work(loop, &req[i], fib, after_fib); in main()
|
/netbsd-src/external/mit/libuv/dist/docs/code/queue-cancel/ |
H A D | main.c | 51 uv_queue_work(loop, &fib_reqs[i], fib, after_fib); in main()
|
/netbsd-src/external/mit/libuv/dist/docs/src/guide/ |
H A D | threads.rst | 191 ``uv_queue_work()`` is a convenience function that allows an application to run 193 task is done. A seemingly simple function, what makes ``uv_queue_work()`` 224 The trigger is ``uv_queue_work``: 297 a separate thread (perhaps using ``uv_queue_work``) but want to notify progress 385 blocking, so the binding uses ``uv_queue_work``.
|
H A D | utilities.rst | 137 When using ``uv_queue_work`` you'll usually need to pass complex data through 165 uv_queue_work(loop, &baton->req, ftp_session, ftp_cleanup);
|
/netbsd-src/external/mit/libuv/dist/src/ |
H A D | threadpool.c | 343 int uv_queue_work(uv_loop_t* loop, in uv_queue_work() function
|
/netbsd-src/external/mpl/dhcp/bind/dist/lib/isc/netmgr/ |
H A D | netmgr.c | 3223 r = uv_queue_work(&worker->loop, &work->req, isc__nm_work_cb, in isc_nm_work_offload() 3225 UV_RUNTIME_CHECK(uv_queue_work, r); in isc_nm_work_offload()
|
/netbsd-src/external/mit/libuv/dist/include/ |
H A D | uv.h | 1098 UV_EXTERN int uv_queue_work(uv_loop_t* loop,
|
/netbsd-src/external/mpl/bind/dist/lib/isc/netmgr/ |
H A D | netmgr.c |
|
/netbsd-src/external/mit/libuv/dist/ |
H A D | ChangeLog | 196 * bench: add `uv_queue_work` ping-pong measurement (Momtchil Momtchev)
|