Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 738224
Collapse All | Expand All

(-)gmt-5.4.4/src/common_sighandler.c.orig (-1 / +1 lines)
Lines 187-193 Link Here
187
		return;
187
		return;
188
	}
188
	}
189
	else {
189
	else {
190
		fprintf (stderr, "ERROR: Caught signal number %d (%s) at\n", sig_num, sys_siglist[sig_num]);
190
		fprintf (stderr, "ERROR: Caught signal number %d (%s) at\n", sig_num, strsignal(sig_num));
191
		backtrace_symbols_fd (array, 2, STDERR_FILENO); /* print function with faulting instruction */
191
		backtrace_symbols_fd (array, 2, STDERR_FILENO); /* print function with faulting instruction */
192
		size = backtrace (array, 50); /* get void*'s for all entries on the stack */
192
		size = backtrace (array, 50); /* get void*'s for all entries on the stack */
193
		fprintf (stderr, "Stack backtrace:\n");
193
		fprintf (stderr, "Stack backtrace:\n");

Return to bug 738224