Remove return value from remove_breakpoints_inf

... since nobody uses it.

gdb/ChangeLog:

	* breakpoint.h (remove_breakpoints_inf): Change return type to
	void, move function documentation here.
	* breakpoint.c (remove_breakpoints_inf): Change return type to
	void, move function documentation to header.
This commit is contained in:
Simon Marchi
2019-07-02 22:03:09 -04:00
parent 9be796f35b
commit f3869b1a41
3 changed files with 13 additions and 5 deletions

View File

@@ -1390,7 +1390,9 @@ extern void insert_breakpoints (void);
extern int remove_breakpoints (void);
extern int remove_breakpoints_inf (inferior *inf);
/* Remove breakpoints of inferior INF. */
extern void remove_breakpoints_inf (inferior *inf);
/* This function can be used to update the breakpoint package's state
after an exec() system call has been executed.