Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'debug/org.eclipse.cdt.debug.mi.core/src/org/eclipse/cdt/debug/mi/core/CommandQueue.java')
-rw-r--r--debug/org.eclipse.cdt.debug.mi.core/src/org/eclipse/cdt/debug/mi/core/CommandQueue.java56
1 files changed, 0 insertions, 56 deletions
diff --git a/debug/org.eclipse.cdt.debug.mi.core/src/org/eclipse/cdt/debug/mi/core/CommandQueue.java b/debug/org.eclipse.cdt.debug.mi.core/src/org/eclipse/cdt/debug/mi/core/CommandQueue.java
deleted file mode 100644
index 39b1681e644..00000000000
--- a/debug/org.eclipse.cdt.debug.mi.core/src/org/eclipse/cdt/debug/mi/core/CommandQueue.java
+++ /dev/null
@@ -1,56 +0,0 @@
-/*
- * (c) Copyright QNX Software Systems Ltd. 2002.
- * All Rights Reserved.
- */
-package org.eclipse.cdt.debug.mi.core;
-
-import org.eclipse.cdt.debug.mi.core.command.Command;
-
-/**
- * Simple thread-safe Queue implemetation.
- */
-public class CommandQueue extends Queue {
-
-
- public CommandQueue() {
- super();
- }
-
- public Command removeCommand(int id) {
- //print("in removeCommand(" + id + ") - entering");
- synchronized (list) {
- int size = list.size();
- for (int i = 0; i < size; i++) {
- Command cmd = (Command)list.get(i);
- int token = cmd.getToken();
- if (token == id) {
- list.remove(cmd);
- return cmd;
- }
- }
- }
- return null;
- }
-
- public Command removeCommand() throws InterruptedException {
- //print("in removeCommand() - entering");
- return (Command)removeItem();
- }
-
- public void addCommand(Command cmd) {
- //print("in addCommand() - entering");
- addItem(cmd);
- }
-
- public Command[] clearCommands() {
- Object[] objs = clearItems();
- Command[] cmds = new Command[objs.length];
- System.arraycopy(objs, 0, cmds, 0, objs.length);
- return cmds;
- }
-
-// private static void print(String msg) {
-// String name = Thread.currentThread().getName();
-// System.out.println(name + ": " + msg);
-// }
-}

Back to the top