]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
lib1564/5: verify that curl_multi_wakeup returns OK
authorDaniel Stenberg <daniel@haxx.se>
Thu, 10 Dec 2020 23:35:15 +0000 (00:35 +0100)
committerDaniel Stenberg <daniel@haxx.se>
Fri, 11 Dec 2020 16:42:17 +0000 (17:42 +0100)
tests/libtest/lib1564.c
tests/libtest/lib1565.c

index 1fe550ac43181e4093cf36579cd9dc3b7bffa68e..8e76e098fb97d3a68d63d58a0433652d668f5db5 100644 (file)
@@ -61,7 +61,7 @@ int test(char *URL)
 
   /* try a single wakeup */
 
-  multi_wakeup(multi);
+  res_multi_wakeup(multi);
 
   time_before_wait = tutil_tvnow();
   multi_poll(multi, NULL, 0, 1000, &numfds);
@@ -94,7 +94,7 @@ int test(char *URL)
   /* try lots of wakeup */
 
   for(i = 0; i < WAKEUP_NUM; ++i)
-    multi_wakeup(multi);
+    res_multi_wakeup(multi);
 
   time_before_wait = tutil_tvnow();
   multi_poll(multi, NULL, 0, 1000, &numfds);
index 832b2ef89851969f4a98c01b92f4276e10955bf6..6ea7d4e0c9855700229bc719c49d40addbcf7d78 100644 (file)
@@ -70,7 +70,7 @@ static void *run_thread(void *ptr)
 
     pthread_mutex_unlock(&lock);
 
-    multi_wakeup(multi);
+    res_multi_wakeup(multi);
   }
 
 test_cleanup: