Enable multi-process mode in the FreeBSD native target.

gdb/ChangeLog:

	* fbsd-nat.h (fbsd_nat_target::supports_multi_process): New
	declaration.
	* fbsd-nat.c (fbsd_nat_target::supports_multi_process): New
	function.
This commit is contained in:
John Baldwin
2020-07-10 09:05:28 -07:00
parent 921eafeada
commit 54904d818b
3 changed files with 15 additions and 0 deletions

View File

@ -1669,6 +1669,12 @@ fbsd_nat_target::set_syscall_catchpoint (int pid, bool needed,
#endif
#endif
bool
fbsd_nat_target::supports_multi_process ()
{
return true;
}
void _initialize_fbsd_nat ();
void
_initialize_fbsd_nat ()