diff options
author | Simon Marchi <simon.marchi@efficios.com> | 2020-07-21 16:49:35 -0400 |
---|---|---|
committer | Simon Marchi <simon.marchi@efficios.com> | 2020-07-21 16:49:36 -0400 |
commit | 05c309a8aeb8060fdcb9a05bbcdca2f5f1be61d7 (patch) | |
tree | fb3f21d98ee420d300668664b4ca0ecaabab517e /gdbserver | |
parent | d1fd641e0b48e75401311528450eb1ddfb3a1fa0 (diff) | |
download | fsf-binutils-gdb-05c309a8aeb8060fdcb9a05bbcdca2f5f1be61d7.zip fsf-binutils-gdb-05c309a8aeb8060fdcb9a05bbcdca2f5f1be61d7.tar.gz fsf-binutils-gdb-05c309a8aeb8060fdcb9a05bbcdca2f5f1be61d7.tar.bz2 |
gdb, gdbserver: make stopped_pids global variables static
I noticed that my IDE was confusing the two stopped_pids variables.
There is one in GDB and one in GDBserver. They should be static, make
them so.
gdb/ChangeLog:
* linux-nat.c (stopped_pids): Make static.
gdbserver/ChangeLog:
* linux-low.cc (stopped_pids): Make static.
Change-Id: If4a2bdcd45d32eb3a732d266a0f686a4e4c23672
Diffstat (limited to 'gdbserver')
-rw-r--r-- | gdbserver/ChangeLog | 4 | ||||
-rw-r--r-- | gdbserver/linux-low.cc | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gdbserver/ChangeLog b/gdbserver/ChangeLog index 9d61587..d924e72 100644 --- a/gdbserver/ChangeLog +++ b/gdbserver/ChangeLog @@ -1,3 +1,7 @@ +2020-07-21 Simon Marchi <simon.marchi@efficios.com> + + * linux-low.cc (stopped_pids): Make static. + 2020-07-17 Andrew Burgess <andrew.burgess@embecosm.com> * tdesc.cc (allocate_target_description): Add header comment. diff --git a/gdbserver/linux-low.cc b/gdbserver/linux-low.cc index 9684922..e454933 100644 --- a/gdbserver/linux-low.cc +++ b/gdbserver/linux-low.cc @@ -206,7 +206,7 @@ struct simple_pid_list /* Next in chain. */ struct simple_pid_list *next; }; -struct simple_pid_list *stopped_pids; +static struct simple_pid_list *stopped_pids; /* Trivial list manipulation functions to keep track of a list of new stopped processes. */ |