]> mj.ucw.cz Git - libucw.git/commitdiff
Reverted most of the Robert's confused commit (the rest should be
authorMartin Mares <mj@ucw.cz>
Mon, 27 Feb 2006 15:27:57 +0000 (16:27 +0100)
committerMartin Mares <mj@ucw.cz>
Mon, 27 Feb 2006 15:27:57 +0000 (16:27 +0100)
harmless).

build/sherlock.cfg
lib/sighandler.c

index bb92a153cddee7482e8a01472fe66bd3db2b5de4..b5b5683a4e4651940b453a1bcc6629d6b41ae9df 100644 (file)
@@ -1,11 +1,11 @@
 # Configuration variables of Sherlock and their default values
-# (c) 2005--2006 Martin Mares <mj@ucw.cz>
+# (c) 2005 Martin Mares <mj@ucw.cz>
 
 # Version of the whole package
-Set("SHERLOCK_VERSION" => "3.9");
+Set("SHERLOCK_VERSION" => "3.8");
 
 # Installation directory for `make install'
-Set("INSTALL_DIR" => "~/run-3.9");
+Set("INSTALL_DIR" => "~/run-3.8");
 
 # Compile everything with debug information and ASSERT's
 UnSet("CONFIG_DEBUG");
index ca8269083afc44ebc7836ebc0c6f41e9acecaedc..9a76851423eaeaa5ad94c72e30ce1fab2988ee07 100644 (file)
@@ -26,17 +26,21 @@ signal_handler_internal(int sig)
 void
 handle_signal(int signum, struct sigaction *oldact)
 {
+#if 0
   struct sigaction act;
   bzero(&act, sizeof(act));
   act.sa_handler = signal_handler_internal;
   act.sa_flags = SA_NOMASK;
   if (sigaction(signum, &act, oldact) < 0)
     die("sigaction: %m");
+#endif
 }
 
 void
 unhandle_signal(int signum, struct sigaction *oldact)
 {
+#if 0
   if (sigaction(signum, oldact, NULL) < 0)
     die("sigaction: %m");
+#endif
 }