summaryrefslogtreecommitdiff
path: root/src/linux/hppa/set_scno.c
blob: 8553352cbf9888eedee41293524e123176833f93 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/*
 * Copyright (c) 2016-2020 The strace developers.
 * All rights reserved.
 *
 * SPDX-License-Identifier: LGPL-2.1-or-later
 */

static int
arch_set_scno(struct tcb *tcp, kernel_ulong_t scno)
{
	if (ptrace_syscall_info_is_valid() && get_regs(tcp) < 0)
		return -1;
	hppa_regs.gr[20] = scno;
	return set_regs(tcp->pid);
}