libuv 1.47.0.

git-svn-id: https://www.unprompted.com/svn/projects/tildefriends/trunk@4615 ed5197a5-7fde-0310-b194-c3ffbd925b24
This commit is contained in:
2023-11-07 17:30:39 +00:00
parent 889773c38d
commit ee9cb63327
226 changed files with 6648 additions and 6444 deletions

View File

@ -29,7 +29,7 @@ static int idle_counter;
static void idle_cb(uv_idle_t* handle) {
ASSERT(handle == &idle_handle);
ASSERT_PTR_EQ(handle, &idle_handle);
if (++idle_counter == NUM_TICKS)
uv_idle_stop(handle);
@ -41,7 +41,7 @@ TEST_IMPL(run_once) {
uv_idle_start(&idle_handle, idle_cb);
while (uv_run(uv_default_loop(), UV_RUN_ONCE));
ASSERT(idle_counter == NUM_TICKS);
ASSERT_EQ(idle_counter, NUM_TICKS);
MAKE_VALGRIND_HAPPY(uv_default_loop());
return 0;