Registry / async / libuv
library1.52.0vcpkgunverified

libuv is a multi-platform support library for asynchronous I/O operations.

vcpkg install libuv
INSTALL
IMPORT
SIG · LIBUV
L
libuv
asynccppv1.52.0
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

uv.h
✓ #include <uv.h>

Runs the default libuv event loop

#include <uv.h> #include <iostream> int main() { uv_loop_t *loop = uv_default_loop(); uv_run(loop, UV_RUN_DEFAULT); std::cout << "libuv loop ran\n"; return 0; }
Debug
Known issues
gotchalibuv is not thread-safe by default; use uv_async_t for cross-thread communication.
fix
Use uv_async_send() to safely signal from other threads.
affects: all
Upgrade
Version history
1.52.0latest on vcpkg
Audit
Dependencies

No dependency data recorded yet.

Agent activity
28 hits · last 30 days
node
26
OpenAI (training)
1
Resources

No resource links recorded.

libuv — pip install libuv · libregistry