* common/signals.c (target_signal_from_host): Add _ markup to error
[deliverable/binutils-gdb.git] / gdb / gdbserver / server.h
index c567ccbc9bfe98ef99d1cf4c85b2bbb025187e47..77f5dd6e42000fde9f94d188bfe5e3293625a6e1 100644 (file)
@@ -96,6 +96,12 @@ int vsnprintf(char *str, size_t size, const char *format, va_list ap);
 #endif
 #endif
 
+/* Define underscore macro, if not available, to be able to use it inside
+   code shared with gdb in common directory.  */
+#ifndef _
+#define _(String) (String)
+#endif
+
 /* A type used for binary buffers.  */
 typedef unsigned char gdb_byte;
 
@@ -575,6 +581,8 @@ int traceframe_read_sdata (int tfnum, ULONGEST offset,
                           unsigned char *buf, ULONGEST length,
                           ULONGEST *nbytes);
 
+int traceframe_read_info (int tfnum, struct buffer *buffer);
+
 /* If a thread is determined to be collecting a fast tracepoint, this
    structure holds the collect status.  */
 
This page took 0.024693 seconds and 4 git commands to generate.