blob: 46ad376c215e02a1a504594877286abb07c94e1f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
/*
* 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(arm_regs.ARM_r0)) {
tcp->u_rval = -1;
tcp->u_error = -arm_regs.ARM_r0;
} else {
tcp->u_rval = arm_regs.ARM_r0;
}
}
|