This is the mail archive of the gdb-patches@sources.redhat.com mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: [patch/rfc] Eliminate an IN_SIGTRAMP call from infrun.c


Hello,

Another bit of infrun becomes untangled. check_sigtramp2 is trying to handle the case of a signal while nexting over a function call (it resumes the inferior letting the signal handler return). The code includes checks using:

DEPRECATED_PC_IN_SIGTRAMP: For up-to-date architectures, it's always false.
INNER_THAN: Per sigaltstack discussion, useless test.

This patch removes those dead tests.

I've checked this in.


2004-04-30 Andrew Cagney <cagney@redhat.com>

	* infrun.c (check_sigtramp2): Delete check for
	DEPRECATED_PC_IN_SIGTRAMP and INNER_THAN.

Andrew




Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]