summaryrefslogtreecommitdiffstats
path: root/src/win/handle.c
diff options
context:
space:
mode:
authorlibuv upstream <libuv@googlegroups.com>2018-01-19 16:57:06 (GMT)
committerBrad King <brad.king@kitware.com>2018-01-19 18:03:03 (GMT)
commitf4a26c748b5ea2cafecdf5490b744a2b167c01ae (patch)
treef59656c8a8c55c9e5482185a827f24457f1f9ae3 /src/win/handle.c
parent362435f02a52008a90a1c19862f09b01f1b5bd7f (diff)
downloadCMake-f4a26c748b5ea2cafecdf5490b744a2b167c01ae.zip
CMake-f4a26c748b5ea2cafecdf5490b744a2b167c01ae.tar.gz
CMake-f4a26c748b5ea2cafecdf5490b744a2b167c01ae.tar.bz2
libuv 2018-01-19 (63de1eca)
Code extracted from: https://github.com/libuv/libuv.git at commit 63de1ecad3252d3e9ed2fe960c21d9387615fa45 (v1.x).
Diffstat (limited to 'src/win/handle.c')
-rw-r--r--src/win/handle.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/win/handle.c b/src/win/handle.c
index 72b49d9..3915070 100644
--- a/src/win/handle.c
+++ b/src/win/handle.c
@@ -152,3 +152,8 @@ void uv_close(uv_handle_t* handle, uv_close_cb cb) {
int uv_is_closing(const uv_handle_t* handle) {
return !!(handle->flags & (UV__HANDLE_CLOSING | UV_HANDLE_CLOSED));
}
+
+
+uv_os_fd_t uv_get_osfhandle(int fd) {
+ return uv__get_osfhandle(fd);
+}