/
githubmirror
/
strace
Обзор
Документация
Войти
/
githubmirror
/
strace
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/linux/sh64/get_error.c
19 строк
395 B
Dmitry V. Levin
Update copyright headers
16 фев 2021, 11:00
16 фев 2021, 11:00
8fa8a88
Код
Авторство
О чём код?
/* * Copyright (c) 2015-2021 The strace developers. * All rights reserved. * * SPDX-License-Identifier: LGPL-2.1-or-later */ #include "negated_errno.h" static void arch_get_error(struct tcb *tcp, const bool check_errno) { if (check_errno && is_negated_errno(sh64_regs.regs[9])) { tcp->u_rval = -1; tcp->u_error = -sh64_regs.regs[9]; } else { tcp->u_rval = sh64_regs.regs[9]; } }