blob: 3b0cdbda8a86445fbd34bb1f701ed990545eafd2 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2013 Mentor Graphics and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Mentor Graphics - Initial API and implementation
*******************************************************************************/
package org.eclipse.cdt.dsf.mi.service;
/**
* Adjustment of the debugger path is required for earlier versions of GDB to
* provide a workaround for https://bugs.eclipse.org/bugs/show_bug.cgi?id=232415.
*
* @since 4.2
*/
public interface IMIBreakpointPathAdjuster {
public String adjustDebuggerPath(String originalPath);
}