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
|
/*
* This file is part of clock_adjtime* strace tests.
*
* Copyright (c) 2016-2020 Dmitry V. Levin <ldv@strace.io>
* All rights reserved.
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
# include <stdio.h>
# include <time.h>
# include <unistd.h>
int
main(void)
{
long rc = syscall(SYSCALL_NR, CLOCK_MONOTONIC, NULL);
printf("%s(CLOCK_MONOTONIC, NULL) = %s\n",
SYSCALL_NAME, sprintrc(rc));
void *efault = tail_alloc(1);
rc = syscall(SYSCALL_NR, CLOCK_REALTIME, efault);
printf("%s(CLOCK_REALTIME, %p) = %s\n",
SYSCALL_NAME, efault, sprintrc(rc));
puts("+++ exited with 0 +++");
return 0;
}
|