]> asedeno.scripts.mit.edu Git - PuTTY.git/blobdiff - unix/uxmisc.c
Patch from Robert de Bath to substantially simplify timing.c.
[PuTTY.git] / unix / uxmisc.c
index 8441349b34319e7c6c6eb52627e8576ad8965d9c..d11b2f74f5d7a85f1d4826ff7e5965753892bb94 100644 (file)
@@ -13,8 +13,6 @@
 
 #include "putty.h"
 
-long tickcount_offset = 0;
-
 unsigned long getticks(void)
 {
     struct timeval tv;
@@ -24,7 +22,7 @@ unsigned long getticks(void)
      * because we need a decent number of them to fit into a 32-bit
      * word so it can be used for keepalives.
      */
-    return tv.tv_sec * 1000 + tv.tv_usec / 1000 + tickcount_offset;
+    return tv.tv_sec * TICKSPERSEC + tv.tv_usec / (1000000 / TICKSPERSEC);
 }
 
 Filename *filename_from_str(const char *str)