summaryrefslogtreecommitdiffstats
path: root/srUtils.c
diff options
context:
space:
mode:
Diffstat (limited to 'srUtils.c')
-rwxr-xr-xsrUtils.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/srUtils.c b/srUtils.c
index 9724190a..e15456a4 100755
--- a/srUtils.c
+++ b/srUtils.c
@@ -344,14 +344,14 @@ timeoutVal(struct timespec *pt)
assert(pt != NULL);
/* compute timeout */
clock_gettime(CLOCK_REALTIME, &t);
-RUNLOG_VAR("%ld", pt->tv_sec);
-RUNLOG_VAR("%ld", t.tv_sec);
-RUNLOG_VAR("%ld", pt->tv_nsec);
-RUNLOG_VAR("%ld", t.tv_nsec);
+//RUNLOG_VAR("%ld", pt->tv_sec);
+//RUNLOG_VAR("%ld", t.tv_sec);
+//RUNLOG_VAR("%ld", pt->tv_nsec);
+//RUNLOG_VAR("%ld", t.tv_nsec);
iTimeout = (pt->tv_nsec - t.tv_nsec) / 1000000;
-RUNLOG_VAR("%ld", iTimeout);
+//RUNLOG_VAR("%ld", iTimeout);
iTimeout += (pt->tv_sec - t.tv_sec) * 1000;
-RUNLOG_VAR("%ld", iTimeout);
+//RUNLOG_VAR("%ld", iTimeout);
if(iTimeout < 0)
iTimeout = 0;