gdb: add callback defines for new ARGV handling
authorMike Frysinger <vapier@gentoo.org>
Thu, 12 Apr 2012 05:33:15 +0000 (05:33 +0000)
committerMike Frysinger <vapier@gentoo.org>
Thu, 12 Apr 2012 05:33:15 +0000 (05:33 +0000)
The common sim code has slightly unfinished support for these already,
but even arch ports are unable to handle these if the common header does
not define them.  This is because the generated callback header includes
simple common gdb/sim headers only which causes it to skip the new ARGV
syscalls.  Plus, it isn't like providing these in the common header will
break any sim targets which don't want them.

Signed-off-by: Mike Frysinger <vapier@gentoo.org>
include/gdb/ChangeLog
include/gdb/callback.h

index a2ab59f0f6576e10ebd6351b6cdfb6afa6b7f544..cb8df1cbac4af741bf59d75a8c6d7da40a9a5303 100644 (file)
@@ -1,3 +1,7 @@
+2012-04-12  Mike Frysinger  <vapier@gentoo.org>
+
+       * callback.h (CB_SYS_argc, CB_SYS_argnlen, CB_SYS_argn): Define.
+
 2012-02-03  Kevin Buettner  <kevinb@redhat.com>
 
        * sim-rl78.h: New file.
index 9b6cf8539dc05af73281dfab35a5cf44a085f140..5c0d2db7475cb61eac2d5008788d61ba440d5331 100644 (file)
@@ -231,6 +231,11 @@ extern host_callback default_callback;
 #define CB_SYS_truncate        21
 #define CB_SYS_ftruncate 22
 #define CB_SYS_pipe    23
+
+/* New ARGV support.  */
+#define CB_SYS_argc    24
+#define CB_SYS_argnlen 25
+#define CB_SYS_argn    26
 \f
 /* Struct use to pass and return information necessary to perform a
    system call.  */