feat(c/libuv): Add GetIoWatcherFd func using LLGoFiles

This commit is contained in:
hackerchai
2024-08-07 14:48:15 +08:00
parent 3cd62994c7
commit 8848222728
3 changed files with 11 additions and 0 deletions

5
c/libuv/_wrap/libuv.c Normal file
View File

@@ -0,0 +1,5 @@
#include <uv.h>
int uv_tcp_get_io_watcher_fd (uv_tcp_t* handle) {
return handle->io_watcher.fd;
}