diff options
author | Andreas Jaeger <aj@suse.de> | 2001-12-29 13:46:34 +0000 |
---|---|---|
committer | Andreas Jaeger <aj@suse.de> | 2001-12-29 13:46:34 +0000 |
commit | 9403ec5d23e7dc209361b3dbae2fdc184e1684aa (patch) | |
tree | e3a8ebed02293384081aaa3734c74d1f8b38a686 /linuxthreads | |
parent | 1a0ad47f268b65ad2b7b131f3f735a69fe6da860 (diff) | |
download | glibc-9403ec5d23e7dc209361b3dbae2fdc184e1684aa.tar.gz glibc-9403ec5d23e7dc209361b3dbae2fdc184e1684aa.tar.xz glibc-9403ec5d23e7dc209361b3dbae2fdc184e1684aa.zip |
Update.
2001-12-29 Andreas Jaeger <aj@suse.de> * Examples/ex9.c: Add noreturn attribute for thread. * Examples/ex10.c: Likewise. * Examples/ex13.c (thread_start): Likewise. * Examples/ex15.c (worker): Likewise. * Examples/ex18.c: Include unistd.h for prototype of sleep.
Diffstat (limited to 'linuxthreads')
-rw-r--r-- | linuxthreads/ChangeLog | 9 | ||||
-rw-r--r-- | linuxthreads/Examples/ex10.c | 4 | ||||
-rw-r--r-- | linuxthreads/Examples/ex13.c | 6 | ||||
-rw-r--r-- | linuxthreads/Examples/ex15.c | 2 | ||||
-rw-r--r-- | linuxthreads/Examples/ex9.c | 4 |
5 files changed, 19 insertions, 6 deletions
diff --git a/linuxthreads/ChangeLog b/linuxthreads/ChangeLog index 2b55b8fcfb..d41cb7af01 100644 --- a/linuxthreads/ChangeLog +++ b/linuxthreads/ChangeLog @@ -1,3 +1,12 @@ +2001-12-29 Andreas Jaeger <aj@suse.de> + + * Examples/ex9.c: Add noreturn attribute for thread. + * Examples/ex10.c: Likewise. + * Examples/ex13.c (thread_start): Likewise. + * Examples/ex15.c (worker): Likewise. + + * Examples/ex18.c: Include unistd.h for prototype of sleep. + 2001-12-14 Ulrich Drepper <drepper@redhat.com> * man/pthread_atfork.man: Adjust description of mutex handling diff --git a/linuxthreads/Examples/ex10.c b/linuxthreads/Examples/ex10.c index d89f4f469d..8af1b6e1ca 100644 --- a/linuxthreads/Examples/ex10.c +++ b/linuxthreads/Examples/ex10.c @@ -1,5 +1,5 @@ /* Tests for pthread_mutex_timedlock function. - Copyright (C) 2000 Free Software Foundation, Inc. + Copyright (C) 2000, 2001 Free Software Foundation, Inc. Contributed by Kaz Kylheku <kaz@ashi.footprints.net>, 2000. The GNU C Library is free software; you can redistribute it and/or @@ -28,7 +28,7 @@ #define NUM_ITERS 50 #define TIMEOUT_NS 100000000L -static void *thread (void *); +static void *thread (void *) __attribute__ ((__noreturn__)); static pthread_mutex_t mutex = PTHREAD_MUTEX_INITIALIZER; int diff --git a/linuxthreads/Examples/ex13.c b/linuxthreads/Examples/ex13.c index af95358297..cbc7a2b2bd 100644 --- a/linuxthreads/Examples/ex13.c +++ b/linuxthreads/Examples/ex13.c @@ -1,5 +1,5 @@ /* Test for Pthreads/mutexes. - Copyright (C) 2000 Free Software Foundation, Inc. + Copyright (C) 2000, 2001 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Kurt Garloff <garloff@suse.de>, 2000. @@ -25,6 +25,9 @@ #include <string.h> #include <unistd.h> +static void *thread_start (void *ptr) __attribute__ ((__noreturn__)); + + struct thr_ctrl { pthread_mutex_t mutex; @@ -58,7 +61,6 @@ pthr_cond_signal_mutex (pthread_cond_t * cond, pthread_mutex_t * mut) printf ("mutex_unlock: %s\n", strerror (err)); } - static void * thread_start (void *ptr) { diff --git a/linuxthreads/Examples/ex15.c b/linuxthreads/Examples/ex15.c index f73b940949..e953b231d7 100644 --- a/linuxthreads/Examples/ex15.c +++ b/linuxthreads/Examples/ex15.c @@ -5,6 +5,8 @@ #include <pthread.h> #include <unistd.h> +static void *worker (void *dummy) __attribute__ ((__noreturn__)); + static void * worker (void *dummy) { diff --git a/linuxthreads/Examples/ex9.c b/linuxthreads/Examples/ex9.c index 0c08741003..dafb4065de 100644 --- a/linuxthreads/Examples/ex9.c +++ b/linuxthreads/Examples/ex9.c @@ -1,5 +1,5 @@ /* Tests for pthread_barrier_* functions. - Copyright (C) 2000 Free Software Foundation, Inc. + Copyright (C) 2000, 2001 Free Software Foundation, Inc. Contributed by Kaz Kylheku <kaz@ashi.footprints.net>, 2000. The GNU C Library is free software; you can redistribute it and/or @@ -26,7 +26,7 @@ #define NUM_THREADS 10 #define NUM_ITERS 500 -static void *thread (void *); +static void *thread (void *) __attribute__ ((__noreturn__)); static pthread_barrier_t barrier; int |