From: Roland McGrath Date: Thu, 6 Mar 2003 19:16:53 +0000 (+0000) Subject: 2003-03-06 Martin Schwidefsky X-Git-Tag: cvs/glibc-2_3_3~1348 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b0898d85cd660b89d97ba6625e9dcef27007ac44;p=thirdparty%2Fglibc.git 2003-03-06 Martin Schwidefsky * rt/tst-aio7.c (do_test): Cancel i/o on CB1 before it's out of scope. --- diff --git a/rt/tst-aio7.c b/rt/tst-aio7.c index b4903c7892e..b2ba81312a4 100644 --- a/rt/tst-aio7.c +++ b/rt/tst-aio7.c @@ -180,6 +180,14 @@ do_test (void) puts ("aio_suspend([done,blocked],2,3) suspended thread"); ++result; } + + /* Cancel i/o on cb1. */ + r = aio_cancel (piped[0], &cb1); + if (r != AIO_CANCELED) + { + puts ("aio_cancel did not return AIO_CANCELED"); + ++result; + } } return result;