Commit 416bc512 authored by Roland McGrath's avatar Roland McGrath Committed by Linus Torvalds

[PATCH] Use decimal for PTRACE_ATTACH and PTRACE_DETACH.

It is sure confusing that linux/ptrace.h has:
	#define PTRACE_SINGLESTEP	   9
	#define PTRACE_ATTACH		0x10
	#define PTRACE_DETACH		0x11
	#define PTRACE_SYSCALL		  24
All the low-numbered constants are in decimal, but the last two in hex.
It sure makes it likely that someone will look at this and think that
9, 10, 11 are used, and that 16 and 17 are not used.

How about we use the same notation for all the numbers [0,24] in the
same short list?
Signed-off-by: default avatarRoland McGrath <roland@redhat.com>
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent cf3e43db
...@@ -16,8 +16,8 @@ ...@@ -16,8 +16,8 @@
#define PTRACE_KILL 8 #define PTRACE_KILL 8
#define PTRACE_SINGLESTEP 9 #define PTRACE_SINGLESTEP 9
#define PTRACE_ATTACH 0x10 #define PTRACE_ATTACH 16
#define PTRACE_DETACH 0x11 #define PTRACE_DETACH 17
#define PTRACE_SYSCALL 24 #define PTRACE_SYSCALL 24
......
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