Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 17 Mar 2016 00:32:29 +0000 (UTC)
From:      Mark Peek <mp@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-10@freebsd.org
Subject:   svn commit: r296969 - stable/10/bin/csh
Message-ID:  <201603170032.u2H0WTDm082647@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: mp
Date: Thu Mar 17 00:32:29 2016
New Revision: 296969
URL: https://svnweb.freebsd.org/changeset/base/296969

Log:
  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

Modified:
  stable/10/bin/csh/config_p.h
Directory Properties:
  stable/10/   (props changed)

Modified: stable/10/bin/csh/config_p.h
==============================================================================
--- stable/10/bin/csh/config_p.h	Wed Mar 16 23:59:29 2016	(r296968)
+++ stable/10/bin/csh/config_p.h	Thu Mar 17 00:32:29 2016	(r296969)
@@ -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 */



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201603170032.u2H0WTDm082647>