1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-06-07 09:46:02 +02:00

Bug 317325: Upversion dsf.gdb plug-in to 4.0

This commit is contained in:
Marc Khouzam 2010-07-30 15:51:43 +00:00
parent 0718dffac3
commit 04f6ef5c84
9 changed files with 10 additions and 14 deletions

View file

@ -3,7 +3,7 @@ Bundle-ManifestVersion: 2
Bundle-Name: %pluginName
Bundle-Vendor: %providerName
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-Localization: plugin
Require-Bundle: org.eclipse.core.runtime,

View file

@ -408,7 +408,7 @@ public class LaunchUtils {
* This methods return true if the launch is meant to be in Non-Stop mode.
* Returns false otherwise.
*
* @since 3.1
* @since 4.0
*/
public static boolean getIsNonStopMode(ILaunchConfiguration config) {
try {
@ -424,7 +424,7 @@ public class LaunchUtils {
* This methods return true if the launch is meant to be for post-mortem
* tracing. Returns false otherwise.
*
* @since 3.1
* @since 4.0
*/
public static boolean getIsPostMortemTracing(ILaunchConfiguration config) {
SessionType sessionType = LaunchUtils.getSessionType(config);

View file

@ -168,9 +168,7 @@ public class GDBBackend extends AbstractDsfService implements IGDBBackend {
}
/**
* @since 3.1
*/
/** @since 4.0 */
protected IPath getGDBPath() {
return LaunchUtils.getGDBPath(fLaunchConfiguration);
}

View file

@ -21,7 +21,7 @@ public interface IGDBProcesses extends IMIProcesses {
* This interface extends the DSF ThreadDMData to provide
* the cores on which a process or a thread is located.
*
* @since 3.1
* @since 4.0
*/
public interface IGdbThreadDMData extends IThreadDMData {
/**

View file

@ -288,7 +288,7 @@ public class CLIEventProcessor
*
* @param operation
* @return
* @since 3.1
* @since 4.0
*/
public static boolean isAttachingOperation(String operation) {
// Get the command name.

View file

@ -551,7 +551,7 @@ public class CommandFactory {
return new MIGDBSetPagination(ctx, isSet);
}
/** @since 3.1 */
/** @since 4.0 */
public ICommand<MIInfo> createMIGDBSetSolibAbsolutePrefix(ICommandControlDMContext ctx, String prefix) {
return new MIGDBSetSolibAbsolutePrefix(ctx, prefix);
}

View file

@ -14,7 +14,7 @@ import org.eclipse.cdt.dsf.debug.service.command.ICommandControlService.ICommand
/**
*
* -gdb-set solib-absolute-prefix PATH
* @since 3.1
* @since 4.0
*
*/
public class MIGDBSetSolibAbsolutePrefix extends MIGDBSet {

View file

@ -159,9 +159,7 @@ public class MIListThreadGroupsInfo extends MIInfo {
String getDesciption();
}
/**
* @since 3.1
*/
/** @since 4.0 */
public interface IThreadGroupInfoExtension extends IThreadGroupInfo {
String[] getCores();
}

View file

@ -54,7 +54,7 @@ public class MIThread {
public String getState() { return fState; }
/**
* Available since GDB 7.1
* @since 3.1
* @since 4.0
*/
public String getCore() { return fCore; }