summaryrefslogtreecommitdiff
path: root/tests/join2.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/join2.c')
-rw-r--r--tests/join2.c37
1 files changed, 37 insertions, 0 deletions
diff --git a/tests/join2.c b/tests/join2.c
new file mode 100644
index 0000000..281a0df
--- /dev/null
+++ b/tests/join2.c
@@ -0,0 +1,37 @@
+/*
+ * Test for pthread_join() returning return value from threads.
+ *
+ * Depends on API functions: pthread_create().
+ */
+
+#include "test.h"
+
+void *
+func(void * arg)
+{
+ Sleep(1000);
+ return arg;
+}
+
+int
+main(int argc, char * argv[])
+{
+ pthread_t id[4];
+ int i;
+ int result;
+
+ /* Create a few threads and then exit. */
+ for (i = 0; i < 4; i++)
+ {
+ assert(pthread_create(&id[i], NULL, func, (void *) i) == 0);
+ }
+
+ for (i = 0; i < 4; i++)
+ {
+ assert(pthread_join(id[i], (void *) &result) == 0);
+ assert(result == i);
+ }
+
+ /* Success. */
+ return 0;
+}