aboutsummaryrefslogtreecommitdiff
path: root/nptl/tst-join5.c
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>2003-03-23 10:01:48 +0000
committerRoland McGrath <roland@gnu.org>2003-03-23 10:01:48 +0000
commitb910f7887bdc3c07e460c8ee25ba552c6a2249a5 (patch)
tree06271b5c9ed70bf9c3dd2a08c551a2a54c1ed302 /nptl/tst-join5.c
parent24eaaef61dffee283b6d32328f3e5126063d9d2a (diff)
downloadglibc-b910f7887bdc3c07e460c8ee25ba552c6a2249a5.tar
glibc-b910f7887bdc3c07e460c8ee25ba552c6a2249a5.tar.gz
glibc-b910f7887bdc3c07e460c8ee25ba552c6a2249a5.tar.bz2
glibc-b910f7887bdc3c07e460c8ee25ba552c6a2249a5.zip
* tst-join5.c (tf1, tf2): Add a cast.
* Makeconfig (includes): Append -I$(..)nptl to this variable. * tst-barrier2.c (do_test) [! _POSIX_THREAD_PROCESS_SHARED]: Don't test anything. * tst-cond4.c: Likewise. * tst-cond6.c: Likewise. * tst-flock2.c: Likewise. * tst-mutex4.c: Likewise. * tst-rwlock4.c: Likewise. * tst-signal1.c: Likewise. * tst-spin2.c: Likewise. * tst-cond11.c [! _POSIX_CLOCK_SELECTION]: Likewise. * tst-mutex4.c: Use test-skeleton.c. * tst-spin2.c: Likewise. * tst-sysconf.c: Likewise. * tst-barrier2.c: Likewise. * tst-cond4.c: Likewise. * tst-cond6.c: Likewise. * tst-rwlock4.c: Likewise. * tst-unload.c: Likewise. * tst-flock2.c (do_test): Use return instead of exit.
Diffstat (limited to 'nptl/tst-join5.c')
-rw-r--r--nptl/tst-join5.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/nptl/tst-join5.c b/nptl/tst-join5.c
index 68c4ac6fc6..589fac6b5f 100644
--- a/nptl/tst-join5.c
+++ b/nptl/tst-join5.c
@@ -26,7 +26,7 @@
static void *
tf1 (void *arg)
{
- pthread_join (arg, NULL);
+ pthread_join ((pthread_t) arg, NULL);
puts ("1st join returned");
@@ -37,7 +37,7 @@ tf1 (void *arg)
static void *
tf2 (void *arg)
{
- pthread_join (arg, NULL);
+ pthread_join ((pthread_t) arg, NULL);
puts ("2nd join returned");