aboutsummaryrefslogtreecommitdiff
path: root/linuxthreads/Examples/ex10.c
diff options
context:
space:
mode:
authorAndreas Jaeger <aj@suse.de>2001-12-29 13:46:34 +0000
committerAndreas Jaeger <aj@suse.de>2001-12-29 13:46:34 +0000
commit9403ec5d23e7dc209361b3dbae2fdc184e1684aa (patch)
treee3a8ebed02293384081aaa3734c74d1f8b38a686 /linuxthreads/Examples/ex10.c
parent1a0ad47f268b65ad2b7b131f3f735a69fe6da860 (diff)
downloadglibc-9403ec5d23e7dc209361b3dbae2fdc184e1684aa.tar
glibc-9403ec5d23e7dc209361b3dbae2fdc184e1684aa.tar.gz
glibc-9403ec5d23e7dc209361b3dbae2fdc184e1684aa.tar.bz2
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/Examples/ex10.c')
-rw-r--r--linuxthreads/Examples/ex10.c4
1 files changed, 2 insertions, 2 deletions
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