mirror of
https://github.com/Kitware/CMake.git
synced 2026-02-23 07:28:51 -06:00
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:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user