Move __SIGRTMIN.
authorDoug Evans <dje@google.com>
Mon, 26 Oct 2015 20:30:57 +0000 (13:30 -0700)
committerDoug Evans <dje@google.com>
Mon, 26 Oct 2015 20:30:57 +0000 (13:30 -0700)
gdb/ChangeLog:

* nat/linux-nat.h (__SIGRTMIN): Move here from gdbserver/linux-low.c.

gdb/gdbserver/ChangeLog:

* linux-low.c (__SIGRTMIN): Move to nat/linux-nat.h.

gdb/ChangeLog
gdb/gdbserver/ChangeLog
gdb/gdbserver/linux-low.c
gdb/nat/linux-nat.h

index 9806a42d6e72a89a0eee47edc78c632468919c9a..ab0178c39cb946b2640b38269749c64a2ac51e6a 100644 (file)
@@ -1,3 +1,7 @@
+2015-10-26  Doug Evans  <dje@google.com>
+
+       * nat/linux-nat.h (__SIGRTMIN): Move here from gdbserver/linux-low.c.
+
 2015-10-26  Doug Evans  <dje@google.com>
 
        * common/gdb_wait.h (W_STOPCODE): Define, moved here from
index 99973bf24db470771c3521447103a82ae4f0a733..1b9e0c4ec50c48c35ebf297ebe98d1c78ef72cac 100644 (file)
@@ -1,3 +1,7 @@
+2015-10-26  Doug Evans  <dje@google.com>
+
+       * linux-low.c (__SIGRTMIN): Move to nat/linux-nat.h.
+
 2015-10-26  Doug Evans  <dje@google.com>
 
        * linux-low.c (W_STOPCODE): Moved to common/gdb_wait.h.
index 7ed67c7dc510ca972237c3cfebe87108931e98e6..e778c4c379a80de269b43bb3564cbff3bf65f840 100644 (file)
 #define O_LARGEFILE 0
 #endif
 
-/* This is the kernel's hard limit.  Not to be confused with
-   SIGRTMIN.  */
-#ifndef __SIGRTMIN
-#define __SIGRTMIN 32
-#endif
-
 /* Some targets did not define these ptrace constants from the start,
    so gdbserver defines them locally here.  In the future, these may
    be removed after they are added to asm/ptrace.h.  */
index 0633fa93f98cc9e42e217d392b4a27d61d916bd5..70e6274ac0dd67493ac282ab093aeb95e1b0d17e 100644 (file)
 struct lwp_info;
 struct arch_lwp_info;
 
+/* This is the kernel's hard limit.  Not to be confused with SIGRTMIN.  */
+#ifndef __SIGRTMIN
+#define __SIGRTMIN 32
+#endif
+
 /* Unlike other extended result codes, WSTOPSIG (status) on
    PTRACE_O_TRACESYSGOOD syscall events doesn't return SIGTRAP, but
    instead SIGTRAP with bit 7 set.  */
This page took 0.040424 seconds and 4 git commands to generate.