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

src: default to stream=stderr in handle printer (#4161)

Make printing handles from gdb a little easier because it doesn't always
know how to locate the stdout or stderr globals from libc.

With this commit `call uv_print_all_handles(0, 0)` prints the handles
from the default loop to stderr.
This commit is contained in:
Ben Noordhuis 2023-10-03 13:30:16 +02:00 committed by GitHub
parent 737f4f953f
commit 56fada47f2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -559,6 +559,9 @@ static void uv__print_handles(uv_loop_t* loop, int only_active, FILE* stream) {
if (loop == NULL)
loop = uv_default_loop();
if (stream == NULL)
stream = stderr;
uv__queue_foreach(q, &loop->handle_queue) {
h = uv__queue_data(q, uv_handle_t, handle_queue);