aboutsummaryrefslogtreecommitdiff
path: root/gdb/record.h
diff options
context:
space:
mode:
Diffstat (limited to 'gdb/record.h')
-rw-r--r--gdb/record.h11
1 files changed, 5 insertions, 6 deletions
diff --git a/gdb/record.h b/gdb/record.h
index 166b534..80f2107d 100644
--- a/gdb/record.h
+++ b/gdb/record.h
@@ -64,6 +64,7 @@ enum record_print_flag
/* Indent based on call stack depth (if applicable). */
RECORD_PRINT_INDENT_CALLS = (1 << 2)
};
+
DEF_ENUM_FLAGS_TYPE (enum record_print_flag, record_print_flags);
/* Determined whether the target is stopped at a software or hardware
@@ -73,15 +74,13 @@ DEF_ENUM_FLAGS_TYPE (enum record_print_flag, record_print_flags);
otherwise. */
extern int
- record_check_stopped_by_breakpoint (const address_space *aspace,
- CORE_ADDR pc,
- enum target_stop_reason *reason);
+record_check_stopped_by_breakpoint (const address_space *aspace, CORE_ADDR pc,
+ enum target_stop_reason *reason);
/* Wrapper for target_read_memory that prints a debug message if
reading memory fails. */
-extern int record_read_memory (struct gdbarch *gdbarch,
- CORE_ADDR memaddr, gdb_byte *myaddr,
- ssize_t len);
+extern int record_read_memory (struct gdbarch *gdbarch, CORE_ADDR memaddr,
+ gdb_byte *myaddr, ssize_t len);
/* A wrapper for target_goto_record that parses ARG as a number. */
extern void record_goto (const char *arg);