blob: b5eb3acb9f5bd0bcfd7527c40572a33730791db0 [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 ProxyDebugSignalInfoCommand extends AbstractProxyDebugCommand implements IProxyDebugCommand {
public ProxyDebugSignalInfoCommand(IProxyClient client, BitList procs, String arg) {
super(client, procs);
addArgument(arg);
}
public int getCommandID() {
return SIGNALINFO;
}
}