summaryrefslogtreecommitdiff
path: root/src/server/gdb_server.h
diff options
context:
space:
mode:
authorZachary T Welch <zw@superlucidity.net>2009-11-13 08:06:49 -0800
committerZachary T Welch <zw@superlucidity.net>2009-11-13 11:58:08 -0800
commit53bfd73591037044b391dd9a849e77284a7932d1 (patch)
tree694d4c1e7f10fa308de8d099d92647ebf1e91674 /src/server/gdb_server.h
parent43483e5054c78e0fdfaebed5e14c14246af07c97 (diff)
downloadopenocd+libswd-53bfd73591037044b391dd9a849e77284a7932d1.tar.gz
openocd+libswd-53bfd73591037044b391dd9a849e77284a7932d1.tar.bz2
openocd+libswd-53bfd73591037044b391dd9a849e77284a7932d1.tar.xz
openocd+libswd-53bfd73591037044b391dd9a849e77284a7932d1.zip
gdb_connection_t -> struct gdb_connection
Remove misleading typedef and redundant suffix from struct gdb_connection.
Diffstat (limited to 'src/server/gdb_server.h')
-rw-r--r--src/server/gdb_server.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/server/gdb_server.h b/src/server/gdb_server.h
index 4e334bc0..239c50e0 100644
--- a/src/server/gdb_server.h
+++ b/src/server/gdb_server.h
@@ -32,7 +32,7 @@ struct image_s;
#define GDB_BUFFER_SIZE 16384
-typedef struct gdb_connection_s
+struct gdb_connection
{
char buffer[GDB_BUFFER_SIZE];
char *buf_p;
@@ -47,7 +47,7 @@ typedef struct gdb_connection_s
allowing GDB to pick up a fresh set of register values from the target
without modifying the target state. */
-} gdb_connection_t;
+};
typedef struct gdb_service_s
{