/
githubmirror
/
strace
Обзор
Документация
Войти
/
githubmirror
/
strace
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/linux/loongarch64/get_error.c
19 строк
410 B
WANG Xuerui
Add 64-bit LoongArch support
13 янв 2022, 14:43
Не верифицирован
13 янв 2022, 14:43
819a2c5
Код
Авторство
О чём код?
/* * Copyright (c) 2021-2022 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(loongarch_regs.regs[4])) { tcp->u_rval = -1; tcp->u_error = -loongarch_regs.regs[4]; } else { tcp->u_rval = loongarch_regs.regs[4]; } }