gnunet-svn
[Top][All Lists]
Advanced

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

[gnunet] branch master updated: better task ordering


From: gnunet
Subject: [gnunet] branch master updated: better task ordering
Date: Sat, 15 Feb 2020 12:28:59 +0100

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 e57177325 better task ordering
e57177325 is described below

commit e57177325f2b3f4d66598ff501760da0030e7dd6
Author: Christian Grothoff <address@hidden>
AuthorDate: Sat Feb 15 12:25:06 2020 +0100

    better task ordering
---
 src/util/scheduler.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/util/scheduler.c b/src/util/scheduler.c
index 3d3e5216d..45a6b61e5 100644
--- a/src/util/scheduler.c
+++ b/src/util/scheduler.c
@@ -513,9 +513,9 @@ queue_ready_task (struct GNUNET_SCHEDULER_Task *task)
 {
   enum GNUNET_SCHEDULER_Priority p = check_priority (task->priority);
 
-  GNUNET_CONTAINER_DLL_insert (ready_head[p],
-                               ready_tail[p],
-                               task);
+  GNUNET_CONTAINER_DLL_insert_tail (ready_head[p],
+                                    ready_tail[p],
+                                    task);
   task->in_ready_list = GNUNET_YES;
   ready_count++;
 }

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



reply via email to

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