[Python-apps-commits] r11080 - in packages/s3ql/trunk/debian/patches (clock-granularity.diff)

nikratio-guest at users.alioth.debian.org nikratio-guest at users.alioth.debian.org
Sun Jul 20 19:08:27 UTC 2014


    Date: Sunday, July 20, 2014 @ 19:08:26
  Author: nikratio-guest
Revision: 11080

Make clock resolution heuristic even more conservative, we still
got build failures from i386.

Modified:
  packages/s3ql/trunk/debian/patches/clock-granularity.diff

Modified: packages/s3ql/trunk/debian/patches/clock-granularity.diff
===================================================================
--- packages/s3ql/trunk/debian/patches/clock-granularity.diff	2014-07-20 13:57:14 UTC (rev 11079)
+++ packages/s3ql/trunk/debian/patches/clock-granularity.diff	2014-07-20 19:08:26 UTC (rev 11080)
@@ -18,7 +18,7 @@
  while stamp1 == stamp2:
      stamp2 = time.time()
 -CLOCK_GRANULARITY = 2 * (stamp2 - stamp1)
-+CLOCK_GRANULARITY = max(0.1, 10 * (stamp2 - stamp1))
++CLOCK_GRANULARITY = max(1, 10 * (stamp2 - stamp1))
  del stamp1
  del stamp2
  




More information about the Python-apps-commits mailing list