mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-19 23:15:24 +02:00
[202510] Changed the IRegisters.getBitFields() method to take a generic IDMContext argument.
This commit is contained in:
parent
d5f39af5a8
commit
af4f8c99e1
2 changed files with 2 additions and 2 deletions
|
@ -152,7 +152,7 @@ public interface IRegisters extends IFormattedValues {
|
||||||
* @param ctx Context for the returned data.
|
* @param ctx Context for the returned data.
|
||||||
* @param rm Request completion monitor.
|
* @param rm Request completion monitor.
|
||||||
*/
|
*/
|
||||||
void getBitFields(IRegisterDMContext ctx, DataRequestMonitor<IBitFieldDMContext[]> rm);
|
void getBitFields(IDMContext ctx, DataRequestMonitor<IBitFieldDMContext[]> rm);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Writes a register value for a given register to the target
|
* Writes a register value for a given register to the target
|
||||||
|
|
|
@ -490,7 +490,7 @@ public class MIRegisters extends AbstractDsfService implements IRegisters {
|
||||||
* (non-Javadoc)
|
* (non-Javadoc)
|
||||||
* @see org.eclipse.dd.dsf.debug.service.IRegisters#getBitFields(org.eclipse.dd.dsf.debug.service.IRegisters.IRegisterDMContext, org.eclipse.dd.dsf.concurrent.DataRequestMonitor)
|
* @see org.eclipse.dd.dsf.debug.service.IRegisters#getBitFields(org.eclipse.dd.dsf.debug.service.IRegisters.IRegisterDMContext, org.eclipse.dd.dsf.concurrent.DataRequestMonitor)
|
||||||
*/
|
*/
|
||||||
public void getBitFields( IRegisterDMContext regDmc , DataRequestMonitor<IBitFieldDMContext[]> rm ) {
|
public void getBitFields( IDMContext regDmc , DataRequestMonitor<IBitFieldDMContext[]> rm ) {
|
||||||
rm.setStatus(new Status(IStatus.ERROR, MIPlugin.PLUGIN_ID, NOT_SUPPORTED, "BitField not supported", null)); //$NON-NLS-1$
|
rm.setStatus(new Status(IStatus.ERROR, MIPlugin.PLUGIN_ID, NOT_SUPPORTED, "BitField not supported", null)); //$NON-NLS-1$
|
||||||
rm.done();
|
rm.done();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue