1 // SPDX-License-Identifier: GPL-2.0
3 * Copyright 2018, Breno Leitao, Gustavo Romero, IBM Corp.
5 * A test case that creates a signal and starts a suspended transaction
6 * inside the signal handler.
8 * It returns from the signal handler with the CPU at suspended state, but
9 * without setting usercontext MSR Transaction State (TS) fields.
20 void trap_signal_handler(int signo, siginfo_t *si, void *uc)
22 ucontext_t *ucp = (ucontext_t *) uc;
24 asm("tbegin.; tsuspend.;");
26 /* Skip 'trap' instruction if it succeed */
27 ucp->uc_mcontext.regs->nip += 4;
30 int tm_signal_sigreturn_nt(void)
32 struct sigaction trap_sa;
35 SKIP_IF(htm_is_synthetic());
37 trap_sa.sa_flags = SA_SIGINFO;
38 trap_sa.sa_sigaction = trap_signal_handler;
40 sigaction(SIGTRAP, &trap_sa, NULL);
47 int main(int argc, char **argv)
49 test_harness(tm_signal_sigreturn_nt, "tm_signal_sigreturn_nt");