1 /* Test for timeout handling.
2 Copyright (C) 2000 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Library General Public License as
7 published by the Free Software Foundation; either version 2 of the
8 License, or (at your option) any later version.
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Library General Public License for more details.
15 You should have received a copy of the GNU Library General Public
16 License along with the GNU C Library; see the file COPYING.LIB. If not,
17 write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18 Boston, MA 02111-1307, USA. */
27 /* We expect to wait for 3 seconds so we have to increase the timeout. */
28 #define TIMEOUT 10 /* sec */
31 #define TEST_FUNCTION do_test ()
38 struct timeval before
;
40 struct timespec timeout
;
46 printf ("cannot create pipe: %m\n");
52 cb
.aio_fildes
= fd
[0];
53 cb
.aio_lio_opcode
= LIO_WRITE
;
55 cb
.aio_buf
= (void *) buf
;
56 cb
.aio_nbytes
= sizeof (buf
) - 1;
57 cb
.aio_sigevent
.sigev_notify
= SIGEV_NONE
;
59 /* Try to read from stdin where nothing will be available. */
60 if (aio_read (arr
[0]) < 0)
62 printf ("aio_read failed: %m\n");
66 /* Get the current time. */
67 gettimeofday (&before
, NULL
);
69 /* Wait for input which is unsuccess and therefore the function will
73 if (aio_suspend ((const struct aiocb
*const*) arr
, 1, &timeout
) != -1)
75 puts ("aio_suspend() didn't return -1");
78 else if (errno
!= EAGAIN
)
80 puts ("error not set to EAGAIN");
85 gettimeofday (&after
, NULL
);
86 if (after
.tv_sec
< before
.tv_sec
+ 1)
88 puts ("timeout came too early");
96 #include "../test-skeleton.c"