* readelf.c (dynamic_info): Correct size of array.
[deliverable/binutils-gdb.git] / gdb / gdb_ptrace.h
index aeb46d5520ecd81a9ac14c09ef03cadca9f9e41c..8e32e88577beac26dce38aedea5d7485de7998da 100644 (file)
 # endif
 #endif
 
+/* For systems such as HP/UX that do not provide PT_SYSCALL, define it
+   here as an alias for PT_CONTINUE.  This is what the PT_SYSCALL
+   request is expected to do, in addition to stopping when entering/
+   exiting a system call.  Chances are, if the system supports system
+   call tracing, enabling this feature is probably done separately;
+   and there is probably no special request that we would be required
+   to use when resuming the execution of our program.  */
+#ifndef PT_SYSCALL
+# define PT_SYSCALL PT_CONTINUE
+#endif
+
 /* Some systems, in particular DEC OSF/1, Digital Unix, Compaq Tru64
    or whatever it's called these days, don't provide a prototype for
    ptrace.  Provide one to silence compiler warnings.  */
This page took 0.024725 seconds and 4 git commands to generate.