From 82bde6a77319299522a2d3b6acda495d92fc42c8 Mon Sep 17 00:00:00 2001 From: rfm Date: Wed, 9 Sep 2009 10:02:26 +0000 Subject: [PATCH] add debug warning git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@28647 72102866-910b-0410-8b05-ffd578937521 --- Source/NSRunLoop.m | 1 + 1 file changed, 1 insertion(+) diff --git a/Source/NSRunLoop.m b/Source/NSRunLoop.m index 5e461e692..8e8f57ebc 100644 --- a/Source/NSRunLoop.m +++ b/Source/NSRunLoop.m @@ -1058,6 +1058,7 @@ static inline BOOL timerInvalidated(NSTimer *t) ti = GSTimeNow(); if (ti < now) { + fprintf(stderr, "WARNING, we appear to have jumped back in time %g seconds.\n", now - ti); now = ti; } break;