/
githubmirror
/
strace
Обзор
Документация
Войти
/
githubmirror
/
strace
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/upoke.c
23 строки
493 B
Dmitry V. Levin
Update copyright headers
16 фев 2021, 11:00
16 фев 2021, 11:00
8fa8a88
Код
Авторство
О чём код?
/* * Copyright (c) 2016 Dmitry V. Levin <ldv@strace.io> * Copyright (c) 2016-2021 The strace developers. * All rights reserved. * * SPDX-License-Identifier: LGPL-2.1-or-later */ #include "defs.h" #include "ptrace.h" #include "ptrace_pokeuser.c" int upoke(struct tcb *tcp, unsigned long off, kernel_ulong_t val) { if (ptrace_pokeuser(tcp->pid, off, val) < 0) { if (errno != ESRCH) perror_func_msg("PTRACE_POKEUSER pid:%d @%#lx)", tcp->pid, off); return -1; } return 0; }