/
githubmirror
/
strace
Обзор
Документация
Войти
/
githubmirror
/
strace
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/ptrace_syscall_info.h
21 строка
598 B
Dmitry V. Levin
Check whether PTRACE_SET_SYSCALL_INFO is supported by the kernel
29 июл 2025, 11:00
29 июл 2025, 11:00
eb7a965
Код
Авторство
О чём код?
/* * Copyright (c) 2018-2025 Dmitry V. Levin <ldv@strace.io> * All rights reserved. * * SPDX-License-Identifier: LGPL-2.1-or-later */ #ifndef STRACE_PTRACE_SYSCALL_INFO_H # define STRACE_PTRACE_SYSCALL_INFO_H extern bool ptrace_get_syscall_info_supported; extern bool test_ptrace_get_syscall_info(void); extern bool ptrace_set_syscall_info_supported; extern bool test_ptrace_set_syscall_info(void); extern void print_ptrace_syscall_info(struct tcb *, kernel_ulong_t addr, kernel_ulong_t user_len, kernel_ulong_t kernel_len); #endif /* !STRACE_PTRACE_SYSCALL_INFO_H */