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.
This commit is contained in:
Brad King
2020-04-29 08:50:11 -04:00
parent efdd451f4b
commit 2628eb7460

View File

@@ -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;