master
h 16 lines 505 Bytes
Raw
1 /*
2 * FreeBSD dependent strace print functions
3 *
4 * Copyright (c) 2013 Stacey D. Son
5 *
6 * SPDX-License-Identifier: GPL-2.0-or-later
7 */
8 #include "target_arch_sysarch.h" /* architecture dependent functions */
9
10 static inline void do_os_print_sysarch(const struct syscallname *name,
11 abi_long arg1, abi_long arg2, abi_long arg3, abi_long arg4,
12 abi_long arg5, abi_long arg6)
13 {
14 /* This is arch dependent */
15 do_freebsd_arch_print_sysarch(name, arg1, arg2, arg3, arg4, arg5, arg6);
16 }