From deb8346419a8e5648df00d5384258eae19961f51 Mon Sep 17 00:00:00 2001 From: Roland McGrath Date: Fri, 30 Apr 1999 13:52:59 +0000 Subject: [PATCH] 1999-04-30 Roland McGrath * hurd/hurdinit.c (_hurd_new_proc_init): Don't do initial SIGTRAP if EXEC_SIGTRAP was set in the incoming exec flags--that indicates the exec server simulated a SIGTRAP before we even started up, so gdb is already happy. --- hurd/hurdinit.c | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/hurd/hurdinit.c b/hurd/hurdinit.c index 50b6729..7e2fe01 100644 --- a/hurd/hurdinit.c +++ b/hurd/hurdinit.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1992, 93, 94, 95, 96, 97, 98 Free Software Foundation, Inc. +/* Copyright (C) 1992,93,94,95,96,97,98,99 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -154,7 +154,16 @@ _hurd_new_proc_init (char **argv, here, like _hurd_pid, are already initialized. */ RUN_HOOK (_hurd_proc_subinit, ()); - if (_hurdsig_traced) + /* XXX This code should probably be removed entirely at some point. This + conditional should make it reasonably usable with old gdb's for a + while. Eventually it probably makes most sense for the exec server to + mask out EXEC_SIGTRAP so the debugged program is closer to not being + able to tell it's being debugged. */ + if (_hurdsig_traced +#ifdef EXEC_SIGTRAP + && !(_hurd_exec_flags & EXEC_SIGTRAP) +#endif + ) /* This process is "traced", meaning it should stop on signals or exec. We are all set up now to handle signals. Stop ourselves, to inform our parent (presumably a debugger) that the exec has completed. */ -- 2.7.4