replace internal uses of gettimeofday with monotonic time where appropriate. make...
[lcore.git] / dnssync.pas
index f5eafa6a7a4b9ad832e5d07459fdecc1758e8ba3..84caf9a65e51e103336f484adc9dc0beb2a1b84d 100644 (file)
@@ -94,7 +94,7 @@ begin
 var\r
   temp:ttimeval;\r
 begin\r
-  gettimeofday(temp);\r
+  gettimemonotonic(temp);\r
   result := ((temp.tv_usec div 1000) + (temp.tv_sec * 1000)) and tsmask;\r
 {$endif}\r
 end;\r
@@ -256,7 +256,7 @@ begin
       selecttimeout.tv_sec := 0;\r
       selecttimeout.tv_usec := retryafter;\r
     end;\r
-    //find the highest of the used fd's\r
+    //find the highest of the used fds\r
     b := 0;\r
     for socknum := numsockused-1 downto 0 do if fd[socknum] > b then b := fd[socknum];\r
     selectresult := select(b+1,@fds,nil,nil,@selecttimeout);\r