Index: trunk/Ohana/src/opihi/pantasks/CheckSystem.c
===================================================================
--- trunk/Ohana/src/opihi/pantasks/CheckSystem.c	(revision 4763)
+++ trunk/Ohana/src/opihi/pantasks/CheckSystem.c	(revision 4767)
@@ -2,12 +2,15 @@
 
 # define MAX_DELAY 0.1
-struct timeval start;
+struct timeval start, last;
 static int Ncheck = 0;
 
 int CheckSystem () {
 
+  float dtime;
+  struct timeval now;
+
   gettimeofday (&start, (void *) NULL);
 
-  if (Ncheck < 20) {
+  if (Ncheck < 100) {
     CheckTasks ();
     CheckJobs ();
@@ -18,4 +21,5 @@
     Ncheck = 0;
   }
+  /* ohana_memcheck (FALSE); */
   return (TRUE);
 }
