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/remote.h | |
parent | ca7f92c2f15b86b09c4a8ad14806bef666308d31 (diff) | |
download | binutils-users/simark/clang-format.zip binutils-users/simark/clang-format.tar.gz binutils-users/simark/clang-format.tar.bz2 |
Run clang-format.shusers/simark/clang-format
Change-Id: Ia948cc26d534b0dd02702244d52434b1a2093968
Diffstat (limited to 'gdb/remote.h')
-rw-r--r-- | gdb/remote.h | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/gdb/remote.h b/gdb/remote.h index 74366cd..0bb352e 100644 --- a/gdb/remote.h +++ b/gdb/remote.h @@ -37,9 +37,9 @@ extern bool remote_debug; /* Same as the above, but don't include the function name. */ -#define remote_debug_printf_nofunc(fmt, ...) \ - debug_prefixed_printf_cond_nofunc (remote_debug, "remote", \ - fmt, ##__VA_ARGS__) +#define remote_debug_printf_nofunc(fmt, ...) \ + debug_prefixed_printf_cond_nofunc (remote_debug, "remote", fmt, \ + ##__VA_ARGS__) /* Print "remote" enter/exit debug statements. */ @@ -52,8 +52,8 @@ extern bool remote_debug; rather than timing out; this is used (in synchronous mode) to wait for a target that is is executing user code to stop. */ -extern void getpkt (remote_target *remote, - char **buf, long *sizeof_buf, int forever); +extern void getpkt (remote_target *remote, char **buf, long *sizeof_buf, + int forever); /* Send a packet to the remote machine, with error checking. The data of the packet is in BUF. The string in BUF can be at most PBUFSIZ @@ -115,7 +115,6 @@ struct send_remote_packet_callbacks extern void send_remote_packet (gdb::array_view<const char> &buf, send_remote_packet_callbacks *callbacks); - /* Return true if TARGET is a remote, or extended-remote target, otherwise, return false. */ |