1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
|
/*
* Copyright (c) 2015-2018 Dmitry V. Levin <ldv@altlinux.org>
* Copyright (c) 2015-2019 The strace developers.
* All rights reserved.
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#include "tests.h"
#include <fcntl.h>
#include <unistd.h>
#include "scno.h"
#if defined __NR_eventfd2 && defined O_CLOEXEC
int
main(void)
{
(void) close(0);
if (syscall(__NR_eventfd2, -1L, 1 | O_CLOEXEC | O_NONBLOCK))
perror_msg_and_skip("eventfd2");
return 0;
}
#else
SKIP_MAIN_UNDEFINED("__NR_eventfd2 && O_CLOEXEC")
#endif
|