aboutsummaryrefslogtreecommitdiffstats
path: root/erts
diff options
context:
space:
mode:
authorLukas Larsson <[email protected]>2014-12-09 08:47:49 +0100
committerLukas Larsson <[email protected]>2014-12-19 10:39:52 +0100
commitd6d1ef4787951070dd152daf44eff2003b7f2ed2 (patch)
tree9139b0d701910ce982077dd0ffc46cfe53bbf7d8 /erts
parentf03bce6a77ff5c7885a3b200fe879210299194bb (diff)
downloadotp-d6d1ef4787951070dd152daf44eff2003b7f2ed2.tar.gz
otp-d6d1ef4787951070dd152daf44eff2003b7f2ed2.tar.bz2
otp-d6d1ef4787951070dd152daf44eff2003b7f2ed2.zip
erts: Remove usage of QUANTIFY signal
Diffstat (limited to 'erts')
-rw-r--r--erts/emulator/sys/unix/sys.c25
1 files changed, 0 insertions, 25 deletions
diff --git a/erts/emulator/sys/unix/sys.c b/erts/emulator/sys/unix/sys.c
index 3320d3e314..81ed5626c2 100644
--- a/erts/emulator/sys/unix/sys.c
+++ b/erts/emulator/sys/unix/sys.c
@@ -894,21 +894,6 @@ static RETSIGTYPE user_signal1(int signum)
#endif
}
-#ifdef QUANTIFY
-#if (defined(SIG_SIGSET) || defined(SIG_SIGNAL))
-static RETSIGTYPE user_signal2(void)
-#else
-static RETSIGTYPE user_signal2(int signum)
-#endif
-{
-#ifdef ERTS_SMP
- smp_sig_notify('2');
-#else
- quantify_save_data();
-#endif
-}
-#endif
-
#endif /* #ifndef ETHR_UNUSABLE_SIGUSRX */
static void
@@ -960,9 +945,6 @@ void init_break_handler(void)
sys_sigset(SIGINT, request_break);
#ifndef ETHR_UNUSABLE_SIGUSRX
sys_sigset(SIGUSR1, user_signal1);
-#ifdef QUANTIFY
- sys_sigset(SIGUSR2, user_signal2);
-#endif
#endif /* #ifndef ETHR_UNUSABLE_SIGUSRX */
sys_sigset(SIGQUIT, do_quit);
}
@@ -3207,13 +3189,6 @@ signal_dispatcher_thread_func(void *unused)
case '1': /* SIGUSR1 */
sigusr1_exit();
break;
-#ifdef QUANTIFY
- case '2': /* SIGUSR2 */
- quantify_save_data(); /* Might take a substantial amount of
- time, but this is a test/debug
- build */
- break;
-#endif
default:
erl_exit(ERTS_ABORT_EXIT,
"signal-dispatcher thread received unknown "