mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-23 14:42:11 +02:00
Temporary fix for bug 122344: Memory monitors are not shown in the Memory view.
This commit is contained in:
parent
6826257fc8
commit
d9bcef0863
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,7 @@
|
||||||
|
2005-12-29 Mikhail Khodjaiants
|
||||||
|
Temporary fix for bug 122344: Memory monitors are not shown in the Memory view.
|
||||||
|
* CMemoryBlockRetrievalExtension.java
|
||||||
|
|
||||||
2005-12-29 Mikhail Khodjaiants
|
2005-12-29 Mikhail Khodjaiants
|
||||||
Bug 122336: Use the asynchronous tree viewer in the Modules view.
|
Bug 122336: Use the asynchronous tree viewer in the Modules view.
|
||||||
Grouped the modules-related methods of ICDebugTarget under the
|
Grouped the modules-related methods of ICDebugTarget under the
|
||||||
|
|
|
@ -28,6 +28,7 @@ import org.eclipse.cdt.debug.internal.core.model.CStackFrame;
|
||||||
import org.eclipse.cdt.debug.internal.core.model.CThread;
|
import org.eclipse.cdt.debug.internal.core.model.CThread;
|
||||||
import org.eclipse.core.runtime.CoreException;
|
import org.eclipse.core.runtime.CoreException;
|
||||||
import org.eclipse.core.runtime.IStatus;
|
import org.eclipse.core.runtime.IStatus;
|
||||||
|
import org.eclipse.core.runtime.PlatformObject;
|
||||||
import org.eclipse.core.runtime.Status;
|
import org.eclipse.core.runtime.Status;
|
||||||
import org.eclipse.debug.core.DebugException;
|
import org.eclipse.debug.core.DebugException;
|
||||||
import org.eclipse.debug.core.DebugPlugin;
|
import org.eclipse.debug.core.DebugPlugin;
|
||||||
|
@ -48,7 +49,7 @@ import org.w3c.dom.NodeList;
|
||||||
/**
|
/**
|
||||||
* Implements the memory retrieval features based on the CDI model.
|
* Implements the memory retrieval features based on the CDI model.
|
||||||
*/
|
*/
|
||||||
public class CMemoryBlockRetrievalExtension implements IMemoryBlockRetrievalExtension {
|
public class CMemoryBlockRetrievalExtension extends PlatformObject implements IMemoryBlockRetrievalExtension {
|
||||||
|
|
||||||
private static final String MEMORY_BLOCK_EXPRESSION_LIST = "memoryBlockExpressionList"; //$NON-NLS-1$
|
private static final String MEMORY_BLOCK_EXPRESSION_LIST = "memoryBlockExpressionList"; //$NON-NLS-1$
|
||||||
private static final String MEMORY_BLOCK_EXPRESSION = "expression"; //$NON-NLS-1$
|
private static final String MEMORY_BLOCK_EXPRESSION = "expression"; //$NON-NLS-1$
|
||||||
|
|
Loading…
Add table
Reference in a new issue