diff options
Diffstat (limited to 'linuxthreads')
-rw-r--r-- | linuxthreads/ChangeLog | 5 | ||||
-rw-r--r-- | linuxthreads/Examples/ex4.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/linuxthreads/ChangeLog b/linuxthreads/ChangeLog index ed2b6b9d2e..52230cd76f 100644 --- a/linuxthreads/ChangeLog +++ b/linuxthreads/ChangeLog @@ -1,3 +1,8 @@ +2000-10-30 Ulrich Drepper <drepper@redhat.com> + + * Examples/ex4.c (main): Don't use exit() to avoid warning with + broken compilers. + 2000-10-29 Ulrich Drepper <drepper@redhat.com> * attr.c (__pthread_attr_setguardsize): Don't round guardsize diff --git a/linuxthreads/Examples/ex4.c b/linuxthreads/Examples/ex4.c index 11a09f013e..86584de70d 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); - exit(0); + return 0; } |