From a5b97402f70a3cd43ffee9ccb71560457b4cd88c Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Mon, 12 Jun 2000 19:02:02 +0000 Subject: Update. 2000-06-12 Ulrich Drepper * Examples/ex6.c: Test return value of pthread_join. --- linuxthreads/ChangeLog | 4 ++++ linuxthreads/Examples/ex6.c | 6 +++++- 2 files changed, 9 insertions(+), 1 deletion(-) (limited to 'linuxthreads') diff --git a/linuxthreads/ChangeLog b/linuxthreads/ChangeLog index c948fe3993..c4236bd748 100644 --- a/linuxthreads/ChangeLog +++ b/linuxthreads/ChangeLog @@ -1,3 +1,7 @@ +2000-06-12 Ulrich Drepper + + * Examples/ex6.c: Test return value of pthread_join. + 2000-06-11 Geoff Keating * sysdeps/powerpc/pspinlock.c (__pthread_spin_lock): Implement. diff --git a/linuxthreads/Examples/ex6.c b/linuxthreads/Examples/ex6.c index 15914ce85d..05f92b6a71 100644 --- a/linuxthreads/Examples/ex6.c +++ b/linuxthreads/Examples/ex6.c @@ -34,7 +34,11 @@ main (void) printf ("count = %lu\n", count); } /* pthread_detach (thread); */ - pthread_join (thread, NULL); + if (pthread_join (thread, NULL) != 0) + { + printf ("join failed, count %lu\n", count); + return 2; + } usleep (10); } return 0; -- cgit v1.2.3