summaryrefslogtreecommitdiff
path: root/tests/exit2.c
diff options
context:
space:
mode:
authorbje <bje>1998-07-10 13:06:05 +0000
committerbje <bje>1998-07-10 13:06:05 +0000
commitdd0d3032087734ae660fba5d2218c9458eb7a390 (patch)
tree75a7e737f0571ce56cd5ae160d8effa7333c4b9f /tests/exit2.c
parent80baf8105b142293300279f7a9b9c7410de9c430 (diff)
1998-07-10 Ben Elliston <bje@cygnus.com>
* exit2.c: New file; test pthread_exit() harder.
Diffstat (limited to 'tests/exit2.c')
-rw-r--r--tests/exit2.c32
1 files changed, 32 insertions, 0 deletions
diff --git a/tests/exit2.c b/tests/exit2.c
new file mode 100644
index 0000000..40f218b
--- /dev/null
+++ b/tests/exit2.c
@@ -0,0 +1,32 @@
+/*
+ * Test for pthread_exit().
+ *
+ * Depends on API functions: pthread_create().
+ */
+
+#include <pthread.h>
+#include <stdio.h>
+
+void *
+func(void * arg)
+{
+ printf("Hello world\n");
+ pthread_exit(arg);
+}
+
+int
+main(int argc, char * argv[])
+{
+ pthread_t id[2];
+ int i;
+
+ /* Create a few threads, make them say hello and then exit. */
+
+ for (i = 0; i < 4; i++)
+ {
+ pthread_create(&id, NULL, entry, (void *) i);
+ }
+
+ /* Semantics should be the same as POSIX. Wait for the workers. */
+ pthread_exit((void *) 0);
+}