diff options
author | Simon Marchi <simon.marchi@polymtl.ca> | 2023-02-08 15:36:23 -0500 |
---|---|---|
committer | Simon Marchi <simon.marchi@polymtl.ca> | 2023-02-08 15:46:02 -0500 |
commit | c583a2520616c2736cffc389c89a48b159366e6c (patch) | |
tree | b4925f26506fcee96c16119431c01760f05db95d /gdb/record.h | |
parent | ca7f92c2f15b86b09c4a8ad14806bef666308d31 (diff) | |
download | gdb-users/simark/clang-format.zip gdb-users/simark/clang-format.tar.gz gdb-users/simark/clang-format.tar.bz2 |
Run clang-format.shusers/simark/clang-format
Change-Id: Ia948cc26d534b0dd02702244d52434b1a2093968
Diffstat (limited to 'gdb/record.h')
-rw-r--r-- | gdb/record.h | 11 |
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); |