From 2628eb7460d729fc31dcf3064c3d3a71b1127453 Mon Sep 17 00:00:00 2001 From: Brad King Date: Wed, 29 Apr 2020 08:50:11 -0400 Subject: libuv: Add proctitle and threadpool cleanup stubs to cmake-bootstrap.c These are now called by `uv_library_shutdown` in `src/uv-common.c` but on UNIX we do not compile those features during CMake bootstrap. --- Utilities/cmlibuv/src/unix/cmake-bootstrap.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Utilities/cmlibuv/src/unix/cmake-bootstrap.c b/Utilities/cmlibuv/src/unix/cmake-bootstrap.c index d42ff05..6cf42fa 100644 --- a/Utilities/cmlibuv/src/unix/cmake-bootstrap.c +++ b/Utilities/cmlibuv/src/unix/cmake-bootstrap.c @@ -1,6 +1,12 @@ #include "uv.h" #include "internal.h" +void uv__process_title_cleanup(void) { +} + +void uv__threadpool_cleanup(void) { +} + int uv__tcp_nodelay(int fd, int on) { errno = EINVAL; return -1; -- cgit v0.12