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
This commit is contained in:
Simon Marchi
2020-07-21 16:49:35 -04:00
parent d1fd641e0b
commit 05c309a8ae
4 changed files with 10 additions and 2 deletions

View File

@@ -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. */