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

@ -204,7 +204,7 @@ struct simple_pid_list
int status;
struct simple_pid_list *next;
};
struct simple_pid_list *stopped_pids;
static struct simple_pid_list *stopped_pids;
/* Whether target_thread_events is in effect. */
static int report_thread_events;