blob: 5db3025489558526d652843f51f1602b4b79ef95 [file] [log] [blame]
Dmitry V. Levinf51aec62015-11-30 00:01:01 +00001static int
2get_syscall_result_regs(struct tcb *tcp)
3{
4 /* new syscall ABI returns result in R0 */
5 return upeek(tcp->pid, 4 * REG_REG0, (long *)&sh_r0) < 0 ? -1 : 0;
6}