gdbserver: turn target op 'read_auxv' into a method
[deliverable/binutils-gdb.git] / gdbserver / target.cc
index dd9ee8dfd47f9b60cf999f983d1dc7674b55bd38..97e9d4ac5073717ddaacb16d75c768b702a2fecc 100644 (file)
@@ -414,3 +414,16 @@ process_target::look_up_symbols ()
 {
   /* Nop.  */
 }
+
+bool
+process_target::supports_read_auxv ()
+{
+  return false;
+}
+
+int
+process_target::read_auxv (CORE_ADDR offset, unsigned char *myaddr,
+                          unsigned int len)
+{
+  gdb_assert_not_reached ("target op read_auxv not supported");
+}
This page took 0.023757 seconds and 4 git commands to generate.