Remove unused overload of exit_inferior_silent

This function is not used in the code base.

gdb/ChangeLog:

	* inferior.c (exit_inferior_silent): Remove.

Change-Id: Ib2b7662744da079185ceac2a165b47590bd3113c
This commit is contained in:
Simon Marchi 2019-11-26 12:12:02 -05:00
parent b62f6f5435
commit b926335f33
2 changed files with 4 additions and 8 deletions

View File

@ -1,3 +1,7 @@
2019-11-26 Simon Marchi <simon.marchi@efficios.com>
* inferior.c (exit_inferior_silent): Remove.
2019-11-26 Simon Marchi <simon.marchi@efficios.com>
* dictionary.c (dict_empty, mdict_empty): Remove.

View File

@ -220,14 +220,6 @@ exit_inferior (inferior *inf)
exit_inferior_1 (inf, 0);
}
void
exit_inferior_silent (int pid)
{
struct inferior *inf = find_inferior_pid (pid);
exit_inferior_1 (inf, 1);
}
void
exit_inferior_silent (inferior *inf)
{