-$Id: CHANGES,v 1.153 2002/01/07 14:36:32 stelian Exp $
+$Id: CHANGES,v 1.154 2002/01/10 09:02:54 stelian Exp $
+
+Changes between versions 0.4b26 and 0.4b27 (released ???????????????)
+=====================================================================
+
+1. Fixed behaviour of dump when exceeding resource limits
+ (SIGXFSZ treatment).
Changes between versions 0.4b25 and 0.4b26 (released January 7, 2002)
=====================================================================
#ifndef lint
static const char rcsid[] =
- "$Id: main.c,v 1.63 2002/01/05 23:23:02 stelian Exp $";
+ "$Id: main.c,v 1.64 2002/01/10 09:02:54 stelian Exp $";
#endif /* not lint */
#include <config.h>
signal(SIGTERM, sig);
if (signal(SIGINT, interrupt) == SIG_IGN)
signal(SIGINT, SIG_IGN);
+#ifdef SIGXCPU
+ signal(SIGXCPU, SIG_IGN);
+#endif /* SIGXCPU */
+#ifdef SIGXFSZ
+ signal(SIGXFSZ, SIG_IGN);
+#endif /* SIGXFSZ */
+
set_operators(); /* /etc/group snarfed */
getfstab(); /* /etc/fstab snarfed */