Commit 25d539c9 authored by Martin Schwidefsky's avatar Martin Schwidefsky

s390/ptrace: clarify bits in the per_struct

The bits single_step and instruction_fetch lost their meaning
with git commit 5e9a2692 "[S390] ptrace cleanup".
Clarify the comment for these two bits.
Signed-off-by: default avatarMartin Schwidefsky <schwidefsky@de.ibm.com>
parent c3bdf2e1
...@@ -359,9 +359,9 @@ typedef struct ...@@ -359,9 +359,9 @@ typedef struct
per_cr_bits bits; per_cr_bits bits;
} control_regs; } control_regs;
/* /*
* Use these flags instead of setting em_instruction_fetch * The single_step and instruction_fetch bits are obsolete,
* directly they are used so that single stepping can be * the kernel always sets them to zero. To enable single
* switched on & off while not affecting other tracing * stepping use ptrace(PTRACE_SINGLESTEP) instead.
*/ */
unsigned single_step : 1; unsigned single_step : 1;
unsigned instruction_fetch : 1; unsigned instruction_fetch : 1;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment