X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=src%2Fcore%2Fgnunet-core.c;h=d91dc304d5c1b88152b44f994e958f9d221f9fea;hb=4a99ca1c3eaa4587c9dfbb01790b306014347bce;hp=111bb5087e6ac570e4172cb05e3db768d26f88d4;hpb=c2d9d1e64c9801122caaa6b429fc67706db5c9d7;p=oweals%2Fgnunet.git diff --git a/src/core/gnunet-core.c b/src/core/gnunet-core.c index 111bb5087..d91dc304d 100644 --- a/src/core/gnunet-core.c +++ b/src/core/gnunet-core.c @@ -1,6 +1,6 @@ /* This file is part of GNUnet. - Copyright (C) 2011, 2012, 2014 Christian Grothoff (and other contributing authors) + Copyright (C) 2011, 2012, 2014 GNUnet e.V. 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. */ /** @@ -44,11 +44,9 @@ static struct GNUNET_CORE_MonitorHandle *mh; * Stops monitoring activity. * * @param cls NULL - * @param tc scheduler context */ static void -shutdown_task (void *cls, - const struct GNUNET_SCHEDULER_TaskContext *tc) +shutdown_task (void *cls) { if (NULL != mh) { @@ -157,8 +155,7 @@ run (void *cls, char *const *args, const char *cfgfile, _("Failed to connect to CORE service!\n")); return; } - GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_FOREVER_REL, - &shutdown_task, NULL); + GNUNET_SCHEDULER_add_shutdown (&shutdown_task, NULL); }