mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-06-07 17:56:01 +02:00
Bug 317325: Upversion dsf.gdb plug-in to 4.0
This commit is contained in:
parent
0718dffac3
commit
04f6ef5c84
9 changed files with 10 additions and 14 deletions
|
@ -3,7 +3,7 @@ Bundle-ManifestVersion: 2
|
||||||
Bundle-Name: %pluginName
|
Bundle-Name: %pluginName
|
||||||
Bundle-Vendor: %providerName
|
Bundle-Vendor: %providerName
|
||||||
Bundle-SymbolicName: org.eclipse.cdt.dsf.gdb;singleton:=true
|
Bundle-SymbolicName: org.eclipse.cdt.dsf.gdb;singleton:=true
|
||||||
Bundle-Version: 3.1.0.qualifier
|
Bundle-Version: 4.0.0.qualifier
|
||||||
Bundle-Activator: org.eclipse.cdt.dsf.gdb.internal.GdbPlugin
|
Bundle-Activator: org.eclipse.cdt.dsf.gdb.internal.GdbPlugin
|
||||||
Bundle-Localization: plugin
|
Bundle-Localization: plugin
|
||||||
Require-Bundle: org.eclipse.core.runtime,
|
Require-Bundle: org.eclipse.core.runtime,
|
||||||
|
|
|
@ -408,7 +408,7 @@ public class LaunchUtils {
|
||||||
* This methods return true if the launch is meant to be in Non-Stop mode.
|
* This methods return true if the launch is meant to be in Non-Stop mode.
|
||||||
* Returns false otherwise.
|
* Returns false otherwise.
|
||||||
*
|
*
|
||||||
* @since 3.1
|
* @since 4.0
|
||||||
*/
|
*/
|
||||||
public static boolean getIsNonStopMode(ILaunchConfiguration config) {
|
public static boolean getIsNonStopMode(ILaunchConfiguration config) {
|
||||||
try {
|
try {
|
||||||
|
@ -424,7 +424,7 @@ public class LaunchUtils {
|
||||||
* This methods return true if the launch is meant to be for post-mortem
|
* This methods return true if the launch is meant to be for post-mortem
|
||||||
* tracing. Returns false otherwise.
|
* tracing. Returns false otherwise.
|
||||||
*
|
*
|
||||||
* @since 3.1
|
* @since 4.0
|
||||||
*/
|
*/
|
||||||
public static boolean getIsPostMortemTracing(ILaunchConfiguration config) {
|
public static boolean getIsPostMortemTracing(ILaunchConfiguration config) {
|
||||||
SessionType sessionType = LaunchUtils.getSessionType(config);
|
SessionType sessionType = LaunchUtils.getSessionType(config);
|
||||||
|
|
|
@ -168,9 +168,7 @@ public class GDBBackend extends AbstractDsfService implements IGDBBackend {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/** @since 4.0 */
|
||||||
* @since 3.1
|
|
||||||
*/
|
|
||||||
protected IPath getGDBPath() {
|
protected IPath getGDBPath() {
|
||||||
return LaunchUtils.getGDBPath(fLaunchConfiguration);
|
return LaunchUtils.getGDBPath(fLaunchConfiguration);
|
||||||
}
|
}
|
||||||
|
|
|
@ -21,7 +21,7 @@ public interface IGDBProcesses extends IMIProcesses {
|
||||||
* This interface extends the DSF ThreadDMData to provide
|
* This interface extends the DSF ThreadDMData to provide
|
||||||
* the cores on which a process or a thread is located.
|
* the cores on which a process or a thread is located.
|
||||||
*
|
*
|
||||||
* @since 3.1
|
* @since 4.0
|
||||||
*/
|
*/
|
||||||
public interface IGdbThreadDMData extends IThreadDMData {
|
public interface IGdbThreadDMData extends IThreadDMData {
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -288,7 +288,7 @@ public class CLIEventProcessor
|
||||||
*
|
*
|
||||||
* @param operation
|
* @param operation
|
||||||
* @return
|
* @return
|
||||||
* @since 3.1
|
* @since 4.0
|
||||||
*/
|
*/
|
||||||
public static boolean isAttachingOperation(String operation) {
|
public static boolean isAttachingOperation(String operation) {
|
||||||
// Get the command name.
|
// Get the command name.
|
||||||
|
|
|
@ -551,7 +551,7 @@ public class CommandFactory {
|
||||||
return new MIGDBSetPagination(ctx, isSet);
|
return new MIGDBSetPagination(ctx, isSet);
|
||||||
}
|
}
|
||||||
|
|
||||||
/** @since 3.1 */
|
/** @since 4.0 */
|
||||||
public ICommand<MIInfo> createMIGDBSetSolibAbsolutePrefix(ICommandControlDMContext ctx, String prefix) {
|
public ICommand<MIInfo> createMIGDBSetSolibAbsolutePrefix(ICommandControlDMContext ctx, String prefix) {
|
||||||
return new MIGDBSetSolibAbsolutePrefix(ctx, prefix);
|
return new MIGDBSetSolibAbsolutePrefix(ctx, prefix);
|
||||||
}
|
}
|
||||||
|
|
|
@ -14,7 +14,7 @@ import org.eclipse.cdt.dsf.debug.service.command.ICommandControlService.ICommand
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
* -gdb-set solib-absolute-prefix PATH
|
* -gdb-set solib-absolute-prefix PATH
|
||||||
* @since 3.1
|
* @since 4.0
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public class MIGDBSetSolibAbsolutePrefix extends MIGDBSet {
|
public class MIGDBSetSolibAbsolutePrefix extends MIGDBSet {
|
||||||
|
|
|
@ -159,9 +159,7 @@ public class MIListThreadGroupsInfo extends MIInfo {
|
||||||
String getDesciption();
|
String getDesciption();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/** @since 4.0 */
|
||||||
* @since 3.1
|
|
||||||
*/
|
|
||||||
public interface IThreadGroupInfoExtension extends IThreadGroupInfo {
|
public interface IThreadGroupInfoExtension extends IThreadGroupInfo {
|
||||||
String[] getCores();
|
String[] getCores();
|
||||||
}
|
}
|
||||||
|
|
|
@ -54,7 +54,7 @@ public class MIThread {
|
||||||
public String getState() { return fState; }
|
public String getState() { return fState; }
|
||||||
/**
|
/**
|
||||||
* Available since GDB 7.1
|
* Available since GDB 7.1
|
||||||
* @since 3.1
|
* @since 4.0
|
||||||
*/
|
*/
|
||||||
public String getCore() { return fCore; }
|
public String getCore() { return fCore; }
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue