gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] [gnunet] branch master updated: make some functions static,


From: gnunet
Subject: [GNUnet-SVN] [gnunet] branch master updated: make some functions static, ensure shutdown tasks could be run repeatedly if 1st shutdown did not finish the process
Date: Sat, 31 Mar 2018 21:39:40 +0200

This is an automated email from the git hooks/post-receive script.

grothoff pushed a commit to branch master
in repository gnunet.

The following commit(s) were added to refs/heads/master by this push:
     new a3e88087d make some functions static, ensure shutdown tasks could be 
run repeatedly if 1st shutdown did not finish the process
a3e88087d is described below

commit a3e88087d09186d847ee8bf042ad665ab6cb0850
Author: Christian Grothoff <address@hidden>
AuthorDate: Sat Mar 31 21:39:27 2018 +0200

    make some functions static, ensure shutdown tasks could be run repeatedly 
if 1st shutdown did not finish the process
---
 src/util/scheduler.c | 16 +++++++++++-----
 1 file changed, 11 insertions(+), 5 deletions(-)

diff --git a/src/util/scheduler.c b/src/util/scheduler.c
index 423c2b804..cc0ba3eb0 100644
--- a/src/util/scheduler.c
+++ b/src/util/scheduler.c
@@ -934,6 +934,11 @@ shutdown_pipe_cb (void *cls)
   GNUNET_DISK_file_read (pr, &c, sizeof (c));
   /* mark all active tasks as ready due to shutdown */
   GNUNET_SCHEDULER_shutdown ();
+  shutdown_pipe_task =
+    GNUNET_SCHEDULER_add_read_file (GNUNET_TIME_UNIT_FOREVER_REL,
+                                    pr,
+                                    &shutdown_pipe_cb,
+                                    NULL);
 }
 
 
@@ -2202,8 +2207,8 @@ GNUNET_SCHEDULER_driver_init (const struct 
GNUNET_SCHEDULER_Driver *driver)
   current_priority = GNUNET_SCHEDULER_PRIORITY_DEFAULT;
   current_lifeness = GNUNET_NO;
   memset (&tsk,
-    0,
-    sizeof (tsk));
+          0,
+          sizeof (tsk));
   active_task = &tsk;
   install_parent_control_task =
     GNUNET_SCHEDULER_add_now (&install_parent_control_handler,
@@ -2239,7 +2244,8 @@ GNUNET_SCHEDULER_driver_init (const struct 
GNUNET_SCHEDULER_Driver *driver)
  *
  * @param sh the handle returned by #GNUNET_SCHEDULER_driver_init
  */
-void GNUNET_SCHEDULER_driver_done (struct GNUNET_SCHEDULER_Handle *sh)
+void
+GNUNET_SCHEDULER_driver_done (struct GNUNET_SCHEDULER_Handle *sh)
 {
   GNUNET_assert (NULL == pending_head);
   GNUNET_assert (NULL == pending_timeout_head);
@@ -2440,7 +2446,7 @@ select_add (void *cls,
 }
 
 
-int
+static int
 select_del (void *cls,
             struct GNUNET_SCHEDULER_Task *task)
 {
@@ -2470,7 +2476,7 @@ select_del (void *cls,
 }
 
 
-void
+static void
 select_set_wakeup (void *cls,
                    struct GNUNET_TIME_Absolute dt)
 {

-- 
To stop receiving notification emails like this one, please contact
address@hidden



reply via email to

[Prev in Thread] Current Thread [Next in Thread]