We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9d9427e commit 7c96c55Copy full SHA for 7c96c55
1 file changed
soot-infoflow/src/soot/jimple/infoflow/solver/fastSolver/LocalWorklistTask.java
@@ -2,6 +2,12 @@
2
3
import java.util.ArrayDeque;
4
5
+/**
6
+ * This special task may run multiple tasks on the same thread if they are
7
+ * scheduled using {@link #scheduleLocal(Runnable)}
8
+ *
9
+ * @author Marc Miltenberger
10
+ */
11
public abstract class LocalWorklistTask implements Runnable {
12
private ArrayDeque<Runnable> localTaskList = new ArrayDeque<>();
13
private static final ThreadLocal<LocalWorklistTask> TASKS = new ThreadLocal<>();
0 commit comments