From: Ulrich Drepper Date: Mon, 13 Jul 1998 09:43:48 +0000 (+0000) Subject: Update. X-Git-Tag: cvs/glibc-2_0_95~46 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=b1209f90659953782d856a77819be13e51ef5b5e;p=thirdparty%2Fglibc.git Update. 1998-06-13 11:04 Andreas Schwab * Examples/ex4.c (main): Use exit, not pthread_exit. --- diff --git a/linuxthreads/ChangeLog b/linuxthreads/ChangeLog index b6406691ed3..aef77ed4bb3 100644 --- a/linuxthreads/ChangeLog +++ b/linuxthreads/ChangeLog @@ -1,3 +1,7 @@ +1998-06-13 11:04 Andreas Schwab + + * Examples/ex4.c (main): Use exit, not pthread_exit. + 1998-07-09 13:39 Ulrich Drepper * Versions: Add __pthread_mutexattr_gettype and diff --git a/linuxthreads/Examples/ex4.c b/linuxthreads/Examples/ex4.c index 8ad7454eb8e..11a09f013e6 100644 --- a/linuxthreads/Examples/ex4.c +++ b/linuxthreads/Examples/ex4.c @@ -103,5 +103,5 @@ int main(int argc, char ** argv) printf("Thread %lx: \"%s\"\n", pthread_self(), res); pthread_join(th1, NULL); pthread_join(th2, NULL); - pthread_exit(NULL); + exit(0); }