From: Ulrich Drepper Date: Mon, 12 Jun 2000 19:02:02 +0000 (+0000) Subject: Update. X-Git-Tag: cvs/glibc_2-1-91~234 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=a5b97402f70a3cd43ffee9ccb71560457b4cd88c;p=thirdparty%2Fglibc.git Update. 2000-06-12 Ulrich Drepper * Examples/ex6.c: Test return value of pthread_join. --- diff --git a/assert/Depend b/assert/Depend new file mode 100644 index 00000000000..e35d3258a33 --- /dev/null +++ b/assert/Depend @@ -0,0 +1 @@ +iconvdata diff --git a/iconvdata/Depend b/iconvdata/Depend new file mode 100644 index 00000000000..401deb536c1 --- /dev/null +++ b/iconvdata/Depend @@ -0,0 +1 @@ +iconv diff --git a/intl/Depend b/intl/Depend new file mode 100644 index 00000000000..e35d3258a33 --- /dev/null +++ b/intl/Depend @@ -0,0 +1 @@ +iconvdata diff --git a/linuxthreads/ChangeLog b/linuxthreads/ChangeLog index c948fe39931..c4236bd7480 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 15914ce85d2..05f92b6a71f 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;