This is the mail archive of the libc-hacker@sourceware.cygnus.com mailing list for the glibc project.

Note that libc-hacker is a closed list. You may look at the archives of this list, but subscription and posting are not open.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

PATCH: fix recursive macro defn in sys/ptrace.h


All the other #defines have PT_ prefix on the LHS...

Index: sysdeps/unix/sysv/linux/sys/ptrace.h
===================================================================
RCS file: /cvs/glibc/libc/sysdeps/unix/sysv/linux/sys/ptrace.h,v
retrieving revision 1.11
diff -u -p -r1.11 ptrace.h
--- ptrace.h	2000/06/24 06:56:29	1.11
+++ ptrace.h	2000/07/06 12:33:35
@@ -110,7 +110,7 @@ enum __ptrace_request
 
   /* Continue and stop at the next (return from) syscall.  */
   PTRACE_SYSCALL = 24
-#define PTRACE_SYSCALL PTRACE_SYSCALL
+#define PT_SYSCALL PTRACE_SYSCALL
 };
 
 /* Perform process tracing functions.  REQUEST is one of the values

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]