1 /*
2 * A helper that executes the specified program
3 * with the ptrace PTRACE_GET_SYSCALL_INFO disabled.
4 *
5 * Copyright (c) 2021 The strace developers.
6 * All rights reserved.
7 *
8 * SPDX-License-Identifier: GPL-2.0-or-later
9 */
10
11 #define DISABLE_PTRACE_REQUEST PTRACE_GET_SYSCALL_INFO
12 #define DEFAULT_PROGRAM_INVOCATION_NAME "disable_ptrace_get_syscall_info"
13 #include "disable_ptrace_request.c"