summaryrefslogtreecommitdiff
path: root/linux/mips/set_scno.c
blob: 66448cfeebbc59ab3a4dc735d3827a7cc1c2911a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/*
 * Copyright (c) 2016-2019 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;
	mips_REG_V0 = scno;
	return set_regs(tcp->pid);
}