Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Frysinger <vapier@gentoo.org>2012-04-12 09:33:15 +0400
committerMichael Frysinger <vapier@gentoo.org>2012-04-12 09:33:15 +0400
commit29243f0f8770b591d9ce7546d3771083118a4a1a (patch)
treef3a3f4fa9f69bb429759007162ae3674a3970b48 /include/gdb
parente62d782aeca47eb36ac0c287c801a5d9fe61c7e6 (diff)
gdb: add callback defines for new ARGV handling
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>
Diffstat (limited to 'include/gdb')
-rw-r--r--include/gdb/ChangeLog4
-rw-r--r--include/gdb/callback.h5
2 files changed, 9 insertions, 0 deletions
diff --git a/include/gdb/ChangeLog b/include/gdb/ChangeLog
index a2ab59f0f..cb8df1cba 100644
--- a/include/gdb/ChangeLog
+++ b/include/gdb/ChangeLog
@@ -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.
diff --git a/include/gdb/callback.h b/include/gdb/callback.h
index 9b6cf8539..5c0d2db74 100644
--- a/include/gdb/callback.h
+++ b/include/gdb/callback.h
@@ -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
/* Struct use to pass and return information necessary to perform a
system call. */