Use get_remote_packet_size in download_tracepoint
[deliverable/binutils-gdb.git] / gdb / annotate.h
index 779b7705865c09466ef261787e0bbb4a5a1574e6..1b9d9dd0344cd57cfd2160534420292736e70cf7 100644 (file)
@@ -1,5 +1,5 @@
 /* Annotation routines for GDB.
-   Copyright (C) 1986-2014 Free Software Foundation, Inc.
+   Copyright (C) 1986-2018 Free Software Foundation, Inc.
 
    This file is part of GDB.
 
@@ -74,6 +74,16 @@ extern void annotate_arg_name_end (void);
 extern void annotate_arg_value (struct type *);
 extern void annotate_arg_end (void);
 
+/* Wrap calls to annotate_arg_begin and annotate_arg_end in an RAII
+   class. */
+struct annotate_arg_emitter
+{
+  annotate_arg_emitter () { annotate_arg_begin (); }
+  ~annotate_arg_emitter () { annotate_arg_end (); }
+
+  DISABLE_COPY_AND_ASSIGN (annotate_arg_emitter);
+};
+
 extern void annotate_source (char *, int, int, int,
                             struct gdbarch *, CORE_ADDR);
 
This page took 0.025079 seconds and 4 git commands to generate.