diff options
author | Jakub Jelinek <jakub@redhat.com> | 2006-01-04 07:58:23 +0000 |
---|---|---|
committer | Jakub Jelinek <jakub@redhat.com> | 2006-01-04 07:58:23 +0000 |
commit | 04c414477bd220f2c842453314a6dbb928e3c9e6 (patch) | |
tree | 8052cfeac9ce6b340d133433674270ad6a293af9 /rt/tst-aio2.c | |
parent | 1df14a6af0eed9687fb62130fac201f2f067a936 (diff) | |
download | glibc-04c414477bd220f2c842453314a6dbb928e3c9e6.tar.gz glibc-04c414477bd220f2c842453314a6dbb928e3c9e6.tar.xz glibc-04c414477bd220f2c842453314a6dbb928e3c9e6.zip |
Updated to fedora-glibc-20060104T0754 cvs/fedora-glibc-2_3_90-26
Diffstat (limited to 'rt/tst-aio2.c')
-rw-r--r-- | rt/tst-aio2.c | 25 |
1 files changed, 20 insertions, 5 deletions
diff --git a/rt/tst-aio2.c b/rt/tst-aio2.c index 1ff92ce93b..79076396a4 100644 --- a/rt/tst-aio2.c +++ b/rt/tst-aio2.c @@ -1,5 +1,5 @@ /* Test for notification mechanism in lio_listio. - Copyright (C) 2000,02 Free Software Foundation, Inc. + Copyright (C) 2000, 2002, 2006 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper <drepper@cygnus.com>, 2000. @@ -25,13 +25,19 @@ #include <unistd.h> #include <errno.h> -int flag; + +static pthread_barrier_t b; static void thrfct (sigval_t arg) { - flag = 1; + int e = pthread_barrier_wait (&b); + if (e != 0 && e != PTHREAD_BARRIER_SERIAL_THREAD) + { + puts ("thread: barrier_wait failed"); + exit (1); + } } @@ -53,6 +59,12 @@ do_test (int argc, char *argv[]) unlink (name); + if (pthread_barrier_init (&b, NULL, 2) != 0) + { + puts ("barrier_init failed"); + return 1; + } + arr[0] = &cb; cb.aio_fildes = fd; @@ -77,9 +89,12 @@ do_test (int argc, char *argv[]) return 1; } - if (flag != 0) + puts ("lio_listio returned"); + + int e = pthread_barrier_wait (&b); + if (e != 0 && e != PTHREAD_BARRIER_SERIAL_THREAD) { - puts ("thread created, should not have happened"); + puts ("barrier_wait failed"); return 1; } |