]> git.ipfire.org Git - thirdparty/glibc.git/blame - rt/tst-aio6.c
Installed-header hygiene (BZ#20366): time.h types.
[thirdparty/glibc.git] / rt / tst-aio6.c
CommitLineData
a95d1236 1/* Test for timeout handling.
f7a9f785 2 Copyright (C) 2000-2016 Free Software Foundation, Inc.
a95d1236
UD
3 This file is part of the GNU C Library.
4
5 The GNU C Library is free software; you can redistribute it and/or
41bdb6e2
AJ
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.
a95d1236
UD
9
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
41bdb6e2 13 Lesser General Public License for more details.
a95d1236 14
41bdb6e2 15 You should have received a copy of the GNU Lesser General Public
59ba27a6
PE
16 License along with the GNU C Library; if not, see
17 <http://www.gnu.org/licenses/>. */
a95d1236
UD
18
19#include <aio.h>
20#include <errno.h>
21#include <stdio.h>
22#include <unistd.h>
23#include <sys/time.h>
24
25
26/* We expect to wait for 3 seconds so we have to increase the timeout. */
27#define TIMEOUT 10 /* sec */
28
29
30#define TEST_FUNCTION do_test ()
9c0592ab 31static int
a95d1236
UD
32do_test (void)
33{
34 struct aiocb *arr[1];
35 struct aiocb cb;
36 char buf[100];
37 struct timeval before;
38 struct timeval after;
39 struct timespec timeout;
9c0592ab 40 int fd[2];
a95d1236
UD
41 int result = 0;
42
9c0592ab
UD
43 if (pipe (fd) != 0)
44 {
45 printf ("cannot create pipe: %m\n");
46 return 1;
47 }
48
a95d1236
UD
49 arr[0] = &cb;
50
9c0592ab 51 cb.aio_fildes = fd[0];
a95d1236
UD
52 cb.aio_lio_opcode = LIO_WRITE;
53 cb.aio_reqprio = 0;
54 cb.aio_buf = (void *) buf;
55 cb.aio_nbytes = sizeof (buf) - 1;
636ccfc8 56 cb.aio_offset = 0;
a95d1236
UD
57 cb.aio_sigevent.sigev_notify = SIGEV_NONE;
58
59 /* Try to read from stdin where nothing will be available. */
60 if (aio_read (arr[0]) < 0)
61 {
ffa8d2a0
RM
62 if (errno == ENOSYS)
63 {
64 puts ("no aio support in this configuration");
65 return 0;
66 }
9c0592ab 67 printf ("aio_read failed: %m\n");
a95d1236
UD
68 return 1;
69 }
70
71 /* Get the current time. */
72 gettimeofday (&before, NULL);
73
8b8cc76f 74 /* Wait for input which is unsuccessful and therefore the function will
a95d1236
UD
75 time out. */
76 timeout.tv_sec = 3;
77 timeout.tv_nsec = 0;
78 if (aio_suspend ((const struct aiocb *const*) arr, 1, &timeout) != -1)
79 {
80 puts ("aio_suspend() didn't return -1");
81 result = 1;
82 }
83 else if (errno != EAGAIN)
84 {
85 puts ("error not set to EAGAIN");
86 result = 1;
87 }
88 else
89 {
90 gettimeofday (&after, NULL);
91 if (after.tv_sec < before.tv_sec + 1)
92 {
93 puts ("timeout came too early");
94 result = 1;
95 }
96 }
97
98 return result;
99}
100
101#include "../test-skeleton.c"