From 5b9e851408c1933ddb45390768421cd0b2918637 Mon Sep 17 00:00:00 2001 From: John Baldwin Date: Mon, 27 Mar 2023 12:51:02 -0700 Subject: fbsd-nat: Use correct constant for target_waitstatus::sig. Use GDB_SIGNAL_TRAP instead of SIGTRAP. This is a no-op since the value of SIGTRAP on FreeBSD matches the value of GDB_SIGNAL_TRAP, but it is more correct. Approved-By: Simon Marchi --- gdb/fbsd-nat.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gdb') diff --git a/gdb/fbsd-nat.c b/gdb/fbsd-nat.c index 2f5b512..04d67fc 100644 --- a/gdb/fbsd-nat.c +++ b/gdb/fbsd-nat.c @@ -1439,7 +1439,7 @@ fbsd_nat_target::wait_1 (ptid_t ptid, struct target_waitstatus *ourstatus, SIGTRAP, so only treat SIGTRAP events as system call entry/exit events. */ if (pl.pl_flags & (PL_FLAG_SCE | PL_FLAG_SCX) - && ourstatus->sig () == SIGTRAP) + && ourstatus->sig () == GDB_SIGNAL_TRAP) { #ifdef HAVE_STRUCT_PTRACE_LWPINFO_PL_SYSCALL_CODE if (catch_syscall_enabled ()) -- cgit v1.1