aboutsummaryrefslogtreecommitdiffstats
path: root/src/chschd.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/chschd.c')
-rw-r--r--src/chschd.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/chschd.c b/src/chschd.c
index f18169c20..0507f8e5c 100644
--- a/src/chschd.c
+++ b/src/chschd.c
@@ -62,13 +62,11 @@ void chSchReadyI(Thread *tp, t_msg msg) {
tp->p_state = PRREADY;
tp->p_rdymsg = msg;
-// prio_insert(tp, &rlist.r_queue);
while (cp->p_prio >= tp->p_prio)
cp = cp->p_next;
/* Insertion on p_prev.*/
tp->p_prev = (tp->p_next = cp)->p_prev;
tp->p_prev->p_next = cp->p_prev = tp;
-
}
/**