From: antirez <antirez@gmail.com>
Date: Tue, 27 Mar 2012 10:11:37 +0000 (+0200)
Subject: Correctly set the SIGARLM timer for the software watchdog.
X-Git-Url: https://git.saurik.com/redis.git/commitdiff_plain/1507be5b01df4fcbaf42ca514a79b4b6c7f19d23

Correctly set the SIGARLM timer for the software watchdog.
---

diff --git a/src/debug.c b/src/debug.c
index 2df913b0..30fb0091 100644
--- a/src/debug.c
+++ b/src/debug.c
@@ -692,7 +692,7 @@ void watchdogScheduleSignal(int period) {
 
     /* Will stop the timer if period is 0. */
     it.it_value.tv_sec = period/1000;
-    it.it_value.tv_usec = period%1000;
+    it.it_value.tv_usec = (period%1000)*1000;
     /* Don't automatically restart. */
     it.it_interval.tv_sec = 0;
     it.it_interval.tv_usec = 0;