blob: 947a26e90a8ff3db3415f1b29b704bbcc0893925 [file] [log] [blame]
package org.eclipse.ptp.debug.external.core.proxy.command;
import org.eclipse.ptp.core.proxy.IProxyClient;
import org.eclipse.ptp.core.util.BitList;
public class ProxyDebugListInfoThreadsCommand extends AbstractProxyDebugCommand implements IProxyDebugCommand {
public ProxyDebugListInfoThreadsCommand(IProxyClient client, BitList procs) {
super(client, procs);
}
public int getCommandID() {
return LISTINFOTHREADS;
}
}