Mercurial
view third_party/libuv/docs/src/check.rst @ 275:78699f810817
Add Qwen3-VL and WebRTC dictation services
Add Bazel targets for the CUDA-backed Qwen3-VL server and a local WebRTC faster-whisper dictation service.
Co-authored-by: Copilot <[email protected]>
Copilot-Session: e3d8cb06-6c95-4ae0-9757-651d3796ab00
| author | MrJuneJune <me@mrjunejune.com> |
|---|---|
| date | Mon, 17 Aug 2026 10:58:47 -0700 |
| parents | 948de3f54cea |
| children |
line wrap: on
line source
.. _check: :c:type:`uv_check_t` --- Check handle ===================================== Check handles will run the given callback once per loop iteration, right after polling for i/o. Data types ---------- .. c:type:: uv_check_t Check handle type. .. c:type:: void (*uv_check_cb)(uv_check_t* handle) Type definition for callback passed to :c:func:`uv_check_start`. Public members ^^^^^^^^^^^^^^ N/A .. seealso:: The :c:type:`uv_handle_t` members also apply. API --- .. c:function:: int uv_check_init(uv_loop_t* loop, uv_check_t* check) Initialize the handle. This function always succeeds. :returns: 0 .. c:function:: int uv_check_start(uv_check_t* check, uv_check_cb cb) Start the handle with the given callback. This function always succeeds, except when `cb` is `NULL`. :returns: 0 on success, or `UV_EINVAL` when `cb == NULL`. .. c:function:: int uv_check_stop(uv_check_t* check) Stop the handle, the callback will no longer be called. This function always succeeds. :returns: 0 .. seealso:: The :c:type:`uv_handle_t` API functions also apply.