Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Revert back to using Stack #43444

Merged
merged 1 commit into from
Oct 4, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,7 @@

package io.ballerina.runtime.internal.scheduling;

import java.util.ArrayDeque;
import java.util.Deque;
import java.util.Stack;
import java.util.concurrent.atomic.AtomicBoolean;
import java.util.concurrent.atomic.AtomicInteger;
import java.util.concurrent.locks.ReentrantLock;
Expand All @@ -39,7 +38,7 @@ public class ItemGroup {
* Keep the list of items that should run on same thread.
* Using a stack to get advantage of the locality.
*/
Deque<SchedulerItem> items = new ArrayDeque<>();
Stack<SchedulerItem> items = new Stack<>();

/**
* Indicates this item is already in runnable list/executing or not.
Expand Down