remove unused variables
authorlurchi <lurchi@strangeplace.net>
Sun, 14 Jan 2018 23:32:34 +0000 (00:32 +0100)
committerlurchi <lurchi@strangeplace.net>
Sun, 14 Jan 2018 23:32:34 +0000 (00:32 +0100)
src/util/scheduler.c

index 279a4ed028e549dc32b209d8bc98e28c532c0311..e92405a96cfe863d3b43fbd4840c347b48b28659 100644 (file)
@@ -134,18 +134,6 @@ struct GNUNET_SCHEDULER_Task
    */
   unsigned int fds_len;
 
-  /**
-   * if this task is related to multiple FDs this array contains
-   * all FdInfo structs that were marked as ready by calling
-   * #GNUNET_SCHEDULER_task_ready
-   */
-  struct GNUNET_SCHEDULER_FdInfo *ready_fds;
-
-  /**
-   * Size of the @e ready_fds array
-   */
-  unsigned int ready_fds_len;
-
   /**
    * Do we own the network and file handles referenced by the FdInfo
    * structs in the fds array. This will only be GNUNET_YES if the
@@ -346,11 +334,6 @@ static struct GNUNET_SCHEDULER_Task *ready_tail[GNUNET_SCHEDULER_PRIORITY_COUNT]
  */
 static unsigned int ready_count;
 
-/**
- * How many tasks have we run so far?
- */
-static unsigned long long tasks_run;
-
 /**
  * Priority of the task running right now.  Only
  * valid while a task is running.
@@ -561,10 +544,6 @@ destroy_task (struct GNUNET_SCHEDULER_Task *t)
   {
     GNUNET_array_grow (t->fds, t->fds_len, 0);
   }
-  if (t->ready_fds_len > 0)
-  {
-    GNUNET_array_grow (t->ready_fds, t->ready_fds_len, 0);
-  }
 #if EXECINFO
   GNUNET_free (t->backtrace_strings);
 #endif
@@ -2020,7 +1999,6 @@ GNUNET_SCHEDULER_run_from_driver (struct GNUNET_SCHEDULER_Handle *sh)
     active_task = NULL;
     dump_backtrace (pos);
     destroy_task (pos);
-    tasks_run++;
   }
   shutdown_if_no_lifeness ();
   if (0 == ready_count)