summaryrefslogtreecommitdiff
path: root/tests/exit2.c
diff options
context:
space:
mode:
authorbje <bje>1998-09-12 07:54:36 +0000
committerbje <bje>1998-09-12 07:54:36 +0000
commitbebf4fe4f6ae3d8296a6b9144876d08e5de2261a (patch)
tree0439dae49edbff8c19efefe84e4a0a1ced0a6128 /tests/exit2.c
parent515293e837c28760c8fd8192dae145c2fc2d4bf1 (diff)
1998-09-12 Ben Elliston <bje@cygnus.com>
* exit2.c (func): Return a value. (main): Call the right thread entry function.
Diffstat (limited to 'tests/exit2.c')
-rw-r--r--tests/exit2.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/exit2.c b/tests/exit2.c
index 23c4497..af906eb 100644
--- a/tests/exit2.c
+++ b/tests/exit2.c
@@ -12,6 +12,9 @@ func(void * arg)
{
printf("Hello world\n");
pthread_exit(arg);
+
+ /* Never reached. */
+ return 0;
}
int
@@ -24,7 +27,7 @@ main(int argc, char * argv[])
for (i = 0; i < 4; i++)
{
- pthread_create(&id[i], NULL, entry, (void *) i);
+ pthread_create(&id[i], NULL, func, (void *) i);
}
/* Semantics should be the same as POSIX. Wait for the workers. */