Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Matthieu Dorier
codes
Commits
03a26bd6
Commit
03a26bd6
authored
Dec 22, 2014
by
Jonathan Jenkins
Browse files
fixed swapped args in rr sched causing short circuit
parent
1e822752
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/models/networks/model-net/model-net-sched-impl.c
View file @
03a26bd6
...
...
@@ -388,7 +388,7 @@ int rr_next(
// otherwise request was successful, still in the queue
else
{
mn_sched_queue
*
s
=
sched
;
qlist_add_tail
(
&
s
->
reqs
,
qlist_pop
(
&
s
->
reqs
));
qlist_add_tail
(
qlist_pop
(
&
s
->
reqs
)
,
&
s
->
reqs
);
return
ret
;
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment