We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3070225 commit b5ff2deCopy full SHA for b5ff2de
conformance/interfaces/pthread_cond_timedwait/2-5.c
@@ -89,7 +89,11 @@
89
#define VERBOSE 1
90
#endif
91
92
+#ifdef __EMSCRIPTEN__
93
+#define NTHREADS (30)
94
+#else
95
#define NTHREADS (100)
96
+#endif
97
98
#ifndef WITHOUT_ALTCLK
99
#define USE_ALTCLK /* make tests with MONOTONIC CLOCK if supported */
@@ -358,6 +362,7 @@ int main(int argc, char * argv[])
358
362
} /* Proceed to next case */
359
363
360
364
365
+ printf("Test PASS\n");
361
366
PASSED;
367
}
368
conformance/interfaces/pthread_cond_timedwait/2-6.c
@@ -390,6 +390,7 @@ int main(int argc, char * argv[])
390
ret = sem_destroy(&(data.semB));
391
if (ret != 0) { UNRESOLVED(errno, "Sem destroy failed"); }
392
393
394
395
396
0 commit comments