diff options
author | Martin Schwidefsky <schwidefsky@de.ibm.com> | 2014-03-14 12:01:08 +0100 |
---|---|---|
committer | Martin Schwidefsky <schwidefsky@de.ibm.com> | 2014-03-14 12:59:38 +0100 |
commit | 818a330c4e1be9c39fa7ca9221e044907d92b4bb (patch) | |
tree | 1341793bde170543839a96a71fd72350c8f04c1d /arch/s390/include/asm/ptrace.h | |
parent | 443fc8a3e01cef95f2c7c26605457d49e63da6b1 (diff) | |
download | blackbird-op-linux-818a330c4e1be9c39fa7ca9221e044907d92b4bb.tar.gz blackbird-op-linux-818a330c4e1be9c39fa7ca9221e044907d92b4bb.zip |
s390/ptrace: add support for PTRACE_SINGLEBLOCK
The PTRACE_SINGLEBLOCK option is used to get control whenever
the inferior has executed a successful branch. The PER option to
implement block stepping is successful-branching event, bit 32
in the PER-event mask.
Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
Diffstat (limited to 'arch/s390/include/asm/ptrace.h')
-rw-r--r-- | arch/s390/include/asm/ptrace.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/s390/include/asm/ptrace.h b/arch/s390/include/asm/ptrace.h index 9c82cebddabd..f4783c0b7b43 100644 --- a/arch/s390/include/asm/ptrace.h +++ b/arch/s390/include/asm/ptrace.h @@ -83,6 +83,7 @@ struct per_struct_kernel { * These are defined as per linux/ptrace.h, which see. */ #define arch_has_single_step() (1) +#define arch_has_block_step() (1) #define user_mode(regs) (((regs)->psw.mask & PSW_MASK_PSTATE) != 0) #define instruction_pointer(regs) ((regs)->psw.addr & PSW_ADDR_INSN) |