blob: 27920734b8b0a90f40f396b25b9288ce6848aed2 [file] [log] [blame]
static void
arch_sigreturn(struct tcb *tcp)
{
/* TODO: Verify that this is correct... */
unsigned long addr;
/* Read r1, the stack pointer. */
if (upeek(tcp, 1 * 4, &addr) < 0)
return;
addr += offsetof(struct sigcontext, oldmask);
tprints("{mask=");
print_sigset_addr(tcp, addr);
tprints("}");
}