From b7494eafd641167f614cdd6b217f00d26354d0dc Mon Sep 17 00:00:00 2001 From: mp Date: Thu, 17 Mar 2016 01:17:42 +0000 Subject: MFC 296416: Signal handling within tcsh vfork code path will conflict with some system libraries (such as libthr) which maintain their own signal state. This change adds the tcsh SAVESIGVEC option to save and restore the sigvecs for the signals the child modifies before it execs. Reviewed by: kib, rwatson Reported by: kib Approved by: re --- bin/csh/config_p.h | 1 + 1 file changed, 1 insertion(+) diff --git a/bin/csh/config_p.h b/bin/csh/config_p.h index 0006fe0..f2d7ebc 100644 --- a/bin/csh/config_p.h +++ b/bin/csh/config_p.h @@ -80,6 +80,7 @@ /****************** local defines *********************/ #if defined(__FreeBSD__) +#define SAVESIGVEC #define NLS_BUGS #define BSD_STYLE_COLORLS /* Use LC_MESSAGES locale category to open the message catalog */ -- cgit v1.1