Skip to content

Commit

Permalink
Merge branch 'apriakhin/fix-xd-queue' into 'master'
Browse files Browse the repository at this point in the history
Realm(bugfix): re-queue xd by pushing it to the back

See merge request StanfordLegion/legion!1574

(cherry picked from commit 3b43b2c)

e7c70f8 realm: re-queue xd by pushing to the back

Co-authored-by: apryakhin <pryakhin.artem@gmail.com>
  • Loading branch information
elliottslaughter and apryakhin committed Dec 13, 2024
1 parent 723b0be commit 2f087eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion runtime/realm/transfer/channel.inl
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ namespace Realm {
{
AutoLock<> al(mutex);
was_empty = in_ordered_worker || ready_xds.empty();
ready_xds.push_front(xd);
ready_xds.push_back(xd);
in_ordered_worker = false;
}

Expand Down

0 comments on commit 2f087eb

Please sign in to comment.