1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

[244053] I got confirmation from the GDB committer that the command

"set breakpoint apply" will not be added to GDB.  In 1.1, I had added MIGDBSetBreakpointApply.java which is now useless, so we remove the file altogether.
This commit is contained in:
Marc Khouzam 2008-11-26 15:51:29 +00:00
parent dfe9381a72
commit 4c1d4626cf

View file

@ -1,30 +0,0 @@
/*******************************************************************************
* Copyright (c) 2008 Ericsson and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Ericsson - Initial API and implementation
*******************************************************************************/
package org.eclipse.dd.mi.service.command.commands;
import org.eclipse.dd.dsf.debug.service.command.ICommandControlService.ICommandControlDMContext;
/**
*
* -gdb-set breakpoint apply [global | process]
*
* Set breakpoints applicability mode.
* global == a breakpoint applies to all processes.
* process == a breakpoint applies to a single process.
* @since 1.1
*/
public class MIGDBSetBreakpointApply extends MIGDBSet
{
public MIGDBSetBreakpointApply(ICommandControlDMContext ctx, boolean global) {
super(ctx, new String[] {"breakpoint", "apply", global ? "global" : "process"});//$NON-NLS-1$//$NON-NLS-2$//$NON-NLS-3$ //$NON-NLS-4$
}
}