]> granicus.if.org Git - strace/blob - print_timespec32.c
xlat: add BPF_F_TEST_STATE_FREQ to bpf_prog_flags
[strace] / print_timespec32.c
1 /*
2  * Copyright (c) 2019 Dmitry V. Levin <ldv@altlinux.org>
3  * All rights reserved.
4  *
5  * SPDX-License-Identifier: LGPL-2.1-or-later
6  */
7
8 #include "defs.h"
9
10 #if HAVE_ARCH_TIME32_SYSCALLS
11
12 # define TIMESPEC_T kernel_timespec32_t
13 # define PRINT_TIMESPEC_DATA_SIZE print_timespec32_data_size
14 # define PRINT_TIMESPEC_ARRAY_DATA_SIZE print_timespec32_array_data_size
15 # define PRINT_TIMESPEC print_timespec32
16 # define SPRINT_TIMESPEC sprint_timespec32
17 # define PRINT_TIMESPEC_UTIME_PAIR print_timespec32_utime_pair
18 # define PRINT_ITIMERSPEC print_itimerspec32
19
20 # include "kernel_timespec.h"
21 # include "print_timespec.h"
22
23 #endif /* HAVE_ARCH_TIME32_SYSCALLS */