Update.
authorUlrich Drepper <drepper@redhat.com>
Mon, 13 Jul 1998 09:43:48 +0000 (09:43 +0000)
committerUlrich Drepper <drepper@redhat.com>
Mon, 13 Jul 1998 09:43:48 +0000 (09:43 +0000)
1998-06-13 11:04  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>

* Examples/ex4.c (main): Use exit, not pthread_exit.

linuxthreads/ChangeLog
linuxthreads/Examples/ex4.c

index b640669..aef77ed 100644 (file)
@@ -1,3 +1,7 @@
+1998-06-13 11:04  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
+
+       * Examples/ex4.c (main): Use exit, not pthread_exit.
+
 1998-07-09 13:39  Ulrich Drepper  <drepper@cygnus.com>
 
        * Versions: Add __pthread_mutexattr_gettype and
index 8ad7454..11a09f0 100644 (file)
@@ -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);
 }