[LynxOS] Remove handling of PTRACE_* values removed in Lynx5.
authorJoel Brobecker <brobecker@gnat.com>
Mon, 13 Sep 2010 19:10:30 +0000 (19:10 +0000)
committerJoel Brobecker <brobecker@gnat.com>
Mon, 13 Sep 2010 19:10:30 +0000 (19:10 +0000)
Some of the PTRACE_ macros/values were removed in LynxOS 5.x.
Since we have not use them so far, the chances that we will use them
one day are very small.  So I decided to delete them.

gdb/gdbserver/ChangeLog:

        * lynx-low.c (ptrace_request_to_str): Remove handling for
        request values that have been removed in LynxOS 5.x.

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

index 0a6a71c..f156838 100644 (file)
@@ -1,5 +1,10 @@
 2010-09-13  Joel Brobecker  <brobecker@adacore.com>
 
+       * lynx-low.c (ptrace_request_to_str): Remove handling for
+       request values that have been removed in LynxOS 5.x.
+
+2010-09-13  Joel Brobecker  <brobecker@adacore.com>
+
        * lynx-low.c, lynx-ppc-loc.c: Include <sys/ptrace.h> instead of
        <ptrace.h>
 
index 74d2bcd..3f18919 100644 (file)
@@ -208,16 +208,6 @@ ptrace_request_to_str (int request)
         return "PT_WRITE_FPR";
         break;
 #endif
-#ifdef PTRACE_GETVECREGS
-      case PTRACE_GETVECREGS:
-        return "PTRACE_GETVECREGS";
-        break;
-#endif
-#ifdef PTRACE_SETVECREGS
-      case PTRACE_SETVECREGS:
-        return "PTRACE_SETVECREGS";
-        break;
-#endif
 #ifdef PT_READ_VPR
       case PT_READ_VPR:
         return "PT_READ_VPR";
@@ -268,36 +258,6 @@ ptrace_request_to_str (int request)
       case PTRACE_GETTHREADLIST:
         return "PTRACE_GETTHREADLIST";
         break;
-      case PTRACE_POSTSYSCALL:
-        return "PTRACE_POSTSYSCALL";
-        break;
-      case PTRACE_USE_SIGEXECED:
-        return "PTRACE_USE_SIGEXECED";
-        break;
-      case PTRACE_GETTRACESIG:
-        return "PTRACE_GETTRACESIG";
-        break;
-      case PTRACE_GETCWD:
-        return "PTRACE_GETCWD";
-        break;
-      case PTRACE_TRAPFORK:
-        return "PTRACE_TRAPFORK";
-        break;
-      case PTRACE_GETCHILDPID:
-        return "PTRACE_GETCHILDPID";
-        break;
-      case PTRACE_SYSCALL_ONE:
-        return "PTRACE_SYSCALL_ONE";
-        break;
-      case PTRACE_SIGMASK:
-        return "PTRACE_SIGMASK";
-        break;
-      case PTRACE_GETIWD:
-        return "PTRACE_GETIWD";
-        break;
-      case PTRACE_GETEXECFILE:
-        return "PTRACE_GETEXECFILE";
-        break;
     }
   return "<unknown-request>";
 }