summaryrefslogtreecommitdiff
path: root/linux/m68k/set_scno.c
blob: 05af3dee0940edfe12930a5261f749d813fbf3a1 (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;
	m68k_regs.orig_d0 = scno;
	return set_regs(tcp->pid);
}