We do our best to keep copyright headers up to date, yet git history provides better information on this subject and is more accurate than copyright headers.
21 lines
358 B
C
21 lines
358 B
C
/*
|
|
* Copyright (c) 2016-2018 The strace developers.
|
|
* All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: LGPL-2.1-or-later
|
|
*/
|
|
|
|
static int
|
|
arch_set_error(struct tcb *tcp)
|
|
{
|
|
hppa_r28 = -tcp->u_error;
|
|
return upoke(tcp, PT_GR28, hppa_r28);
|
|
}
|
|
|
|
static int
|
|
arch_set_success(struct tcb *tcp)
|
|
{
|
|
hppa_r28 = tcp->u_rval;
|
|
return upoke(tcp, PT_GR28, hppa_r28);
|
|
}
|