Files
rk35xx-android14/external/strace/linux/arm/set_scno.c
T
hmz007 36ed224bac Rockchip Anroid14_SDK 20240628-rkr5 (2556df1a)
Signed-off-by: hmz007 <hmz007@gmail.com>
Change-Id: Ib87fdbe7a0be7dc961af3500fe9ea4589a127f9f
2024-10-29 18:12:02 +08:00

19 lines
466 B
C

#ifndef PTRACE_SET_SYSCALL
# define PTRACE_SET_SYSCALL 23
#endif
/*
* PTRACE_SET_SYSCALL is supported by linux kernel
* starting with commit v2.6.16-rc1~107^2
*/
static int
arch_set_scno(struct tcb *tcp, kernel_ulong_t scno)
{
unsigned int n = (uint16_t) scno;
int rc = ptrace(PTRACE_SET_SYSCALL, tcp->pid, NULL, (unsigned long) n);
if (rc && errno != ESRCH)
perror_msg("arch_set_scno: PTRACE_SET_SYSCALL pid:%d scno:%#x",
tcp->pid, n);
return rc;
}