diff options
author | Brad King <brad.king@kitware.com> | 2019-01-21 12:54:36 (GMT) |
---|---|---|
committer | Kitware Robot <kwrobot@kitware.com> | 2019-01-21 12:54:45 (GMT) |
commit | 55a2dc3055e8c5f2189c763eb3fd4c9c754d1c05 (patch) | |
tree | 9b7c691309d0a0eb52acbd32d5357e038552376c /Utilities/cmlibuv/src/fs-poll.c | |
parent | eadaf0c8c3b4112d38a19b20a9d303e83640373d (diff) | |
parent | 5b3af28e4532eadf92dee229870cadc94be9c635 (diff) | |
download | CMake-55a2dc3055e8c5f2189c763eb3fd4c9c754d1c05.zip CMake-55a2dc3055e8c5f2189c763eb3fd4c9c754d1c05.tar.gz CMake-55a2dc3055e8c5f2189c763eb3fd4c9c754d1c05.tar.bz2 |
Merge topic 'update-libuv'
5b3af28e45 libuv: Update CMake-internal buildsystem
1136275ae1 libuv: Include uv/ headers from each other without any path
1e1209729b Merge branch 'upstream-libuv' into update-libuv
4fcb0d0213 libuv 2019-01-15 (f84c5e69)
Acked-by: Kitware Robot <kwrobot@kitware.com>
Merge-request: !2822
Diffstat (limited to 'Utilities/cmlibuv/src/fs-poll.c')
-rw-r--r-- | Utilities/cmlibuv/src/fs-poll.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Utilities/cmlibuv/src/fs-poll.c b/Utilities/cmlibuv/src/fs-poll.c index ee73d5a..6c82dfc 100644 --- a/Utilities/cmlibuv/src/fs-poll.c +++ b/Utilities/cmlibuv/src/fs-poll.c @@ -83,7 +83,7 @@ int uv_fs_poll_start(uv_fs_poll_t* handle, if (err < 0) goto error; - ctx->timer_handle.flags |= UV__HANDLE_INTERNAL; + ctx->timer_handle.flags |= UV_HANDLE_INTERNAL; uv__handle_unref(&ctx->timer_handle); err = uv_fs_stat(loop, &ctx->fs_req, ctx->path, poll_cb); @@ -248,7 +248,7 @@ static int statbuf_eq(const uv_stat_t* a, const uv_stat_t* b) { #include "win/handle-inl.h" void uv__fs_poll_endgame(uv_loop_t* loop, uv_fs_poll_t* handle) { - assert(handle->flags & UV__HANDLE_CLOSING); + assert(handle->flags & UV_HANDLE_CLOSING); assert(!(handle->flags & UV_HANDLE_CLOSED)); uv__handle_close(handle); } |