* linux-low.c (linux_create_inferior): Use __SIGRTMIN.
authorDaniel Jacobowitz <drow@false.org>
Wed, 26 Mar 2003 16:36:41 +0000 (16:36 +0000)
committerDaniel Jacobowitz <drow@false.org>
Wed, 26 Mar 2003 16:36:41 +0000 (16:36 +0000)
(linux_wait_for_event, linux_init_signals): Likewise.

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

index ec44b7c79c7b1ad70aaec6893bf0e6515602c5bb..63ec899245a3beb1343fced7bf00a7ec4a94d07a 100644 (file)
@@ -1,3 +1,8 @@
+2003-03-26  Daniel Jacobowitz  <drow@mvista.com>
+
+       * linux-low.c (linux_create_inferior): Use __SIGRTMIN.
+       (linux_wait_for_event, linux_init_signals): Likewise.
+
 2003-03-17  Daniel Jacobowitz  <drow@mvista.com>
 
        * configure.in: Check for stdlib.h.
index 2cb592ae1da6d0f32ace50ffeae9b95780c759ed..95bf9697739df7fd3b5178420f48e1cdaeab45e2 100644 (file)
@@ -147,7 +147,7 @@ linux_create_inferior (char *program, char **allargs)
     {
       ptrace (PTRACE_TRACEME, 0, 0, 0);
 
-      signal (SIGRTMIN + 1, SIG_DFL);
+      signal (__SIGRTMIN + 1, SIG_DFL);
 
       setpgid (0, 0);
 
@@ -493,8 +493,8 @@ linux_wait_for_event (struct thread_info *child)
          /* FIXME drow/2002-06-09: Get signal numbers from the inferior's
             thread library?  */
          if (WIFSTOPPED (wstat)
-             && (WSTOPSIG (wstat) == SIGRTMIN
-                 || WSTOPSIG (wstat) == SIGRTMIN + 1))
+             && (WSTOPSIG (wstat) == __SIGRTMIN
+                 || WSTOPSIG (wstat) == __SIGRTMIN + 1))
            {
              if (debug_threads)
                fprintf (stderr, "Ignored signal %d for %d (LWP %d).\n",
@@ -1248,7 +1248,7 @@ linux_init_signals ()
 {
   /* FIXME drow/2002-06-09: As above, we should check with LinuxThreads
      to find what the cancel signal actually is.  */
-  signal (SIGRTMIN+1, SIG_IGN);
+  signal (__SIGRTMIN+1, SIG_IGN);
 }
 
 void
This page took 0.029885 seconds and 4 git commands to generate.