diff options
author | Ulrich Drepper <drepper@redhat.com> | 2000-06-12 19:02:02 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2000-06-12 19:02:02 +0000 |
commit | a5b97402f70a3cd43ffee9ccb71560457b4cd88c (patch) | |
tree | c4db775edbfc4cec6fe8f9d5f50635dd6173e083 /linuxthreads/Examples | |
parent | a21cd9d19337a272b5ae311b26b470b42f3a6e53 (diff) | |
download | glibc-a5b97402f70a3cd43ffee9ccb71560457b4cd88c.tar.gz glibc-a5b97402f70a3cd43ffee9ccb71560457b4cd88c.tar.xz glibc-a5b97402f70a3cd43ffee9ccb71560457b4cd88c.zip |
Update.
2000-06-12 Ulrich Drepper <drepper@redhat.com> * Examples/ex6.c: Test return value of pthread_join.
Diffstat (limited to 'linuxthreads/Examples')
-rw-r--r-- | linuxthreads/Examples/ex6.c | 6 |
1 files changed, 5 insertions, 1 deletions
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; |