X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=src%2Futil%2Fspeedup.c;h=e7a06a1022e9d01428d8ee9724ccf6ce4bb7afda;hb=fece22eebf8c8d54e79d05f748019e7234823828;hp=d71e7c158d431acb02a11a8b6ffa3d2e081338f0;hpb=f4a2046b53dbe54ee9f101ea6d2a5d981290faf4;p=oweals%2Fgnunet.git diff --git a/src/util/speedup.c b/src/util/speedup.c index d71e7c158..e7a06a102 100644 --- a/src/util/speedup.c +++ b/src/util/speedup.c @@ -1,6 +1,6 @@ /* This file is part of GNUnet. - (C) 2011-2013 Christian Grothoff (and other contributing authors) + Copyright (C) 2011-2013 Christian Grothoff (and other contributing authors) GNUnet is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published @@ -14,8 +14,8 @@ You should have received a copy of the GNU General Public License along with GNUnet; see the file COPYING. If not, write to the - Free Software Foundation, Inc., 59 Temple Place - Suite 330, - Boston, MA 02111-1307, USA. + Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, + Boston, MA 02110-1301, USA. */ /** @@ -34,7 +34,7 @@ static struct GNUNET_TIME_Relative interval; static struct GNUNET_TIME_Relative delta; -static GNUNET_SCHEDULER_TaskIdentifier speedup_task; +static struct GNUNET_SCHEDULER_Task * speedup_task; static void @@ -43,7 +43,7 @@ do_speedup (void *cls, { static long long current_offset; - speedup_task = GNUNET_SCHEDULER_NO_TASK; + speedup_task = NULL; if (0 != (GNUNET_SCHEDULER_REASON_SHUTDOWN & tc->reason)) return; current_offset += delta.rel_value_us; @@ -97,10 +97,10 @@ GNUNET_SPEEDUP_start_ (const struct GNUNET_CONFIGURATION_Handle *cfg) void GNUNET_SPEEDUP_stop_ () { - if (GNUNET_SCHEDULER_NO_TASK != speedup_task) + if (NULL != speedup_task) { GNUNET_SCHEDULER_cancel (speedup_task); - speedup_task = GNUNET_SCHEDULER_NO_TASK; + speedup_task = NULL; } if ( (0 != interval.rel_value_us) && (0 != delta.rel_value_us) )