1 /* Test for timeout handling.
2 Copyright (C) 2000-2013 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 Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the 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 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, see
17 <http://www.gnu.org/licenses/>. */
26 /* We expect to wait for 3 seconds so we have to increase the timeout. */
27 #define TIMEOUT 10 /* sec */
30 #define TEST_FUNCTION do_test ()
37 struct timeval before
;
39 struct timespec timeout
;
45 printf ("cannot create pipe: %m\n");
51 cb
.aio_fildes
= fd
[0];
52 cb
.aio_lio_opcode
= LIO_WRITE
;
54 cb
.aio_buf
= (void *) buf
;
55 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)
64 puts ("no aio support in this configuration");
67 printf ("aio_read failed: %m\n");
71 /* Get the current time. */
72 gettimeofday (&before
, NULL
);
74 /* Wait for input which is unsuccessful and therefore the function will
78 if (aio_suspend ((const struct aiocb
*const*) arr
, 1, &timeout
) != -1)
80 puts ("aio_suspend() didn't return -1");
83 else if (errno
!= EAGAIN
)
85 puts ("error not set to EAGAIN");
90 gettimeofday (&after
, NULL
);
91 if (after
.tv_sec
< before
.tv_sec
+ 1)
93 puts ("timeout came too early");
101 #include "../test-skeleton.c"