aboutsummaryrefslogtreecommitdiff
path: root/gdb/target.h
diff options
context:
space:
mode:
authorSimon Marchi <simon.marchi@polymtl.ca>2021-01-12 14:19:49 -0500
committerSimon Marchi <simon.marchi@polymtl.ca>2021-01-12 14:19:49 -0500
commit16e9019ef738c251ecfbed512c6835f0f0a424f7 (patch)
treec01b11eb7ad1f8bd4817a773eaa9c52853899dde /gdb/target.h
parent3f94e588596cdca710de71735127560788fd8770 (diff)
downloadfsf-binutils-gdb-16e9019ef738c251ecfbed512c6835f0f0a424f7.zip
fsf-binutils-gdb-16e9019ef738c251ecfbed512c6835f0f0a424f7.tar.gz
fsf-binutils-gdb-16e9019ef738c251ecfbed512c6835f0f0a424f7.tar.bz2
gdb: move baud_rate and serial_parity declarations to serial.h
They are currently in target.h, it would make more sense to have them in serial.h, since they are defined in serial.c. gdb/ChangeLog: * target.h (baud_rate, serial_parity): Move declarations... * serial.h: ... here. * main.c: Include serial.h. * serial.c (baud_rate, serial_parity): Update doc. Change-Id: Idc983c154c80ccc29b07ce68df3483cefe03fb71
Diffstat (limited to 'gdb/target.h')
-rw-r--r--gdb/target.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/gdb/target.h b/gdb/target.h
index e1a1d7a..40bf416 100644
--- a/gdb/target.h
+++ b/gdb/target.h
@@ -2477,12 +2477,6 @@ extern gdb::optional<gdb::char_vector> target_get_osdata (const char *type);
information (higher values, more information). */
extern int remote_debug;
-/* Speed in bits per second, or -1 which means don't mess with the speed. */
-extern int baud_rate;
-
-/* Parity for serial port */
-extern int serial_parity;
-
/* Timeout limit for response from target. */
extern int remote_timeout;