1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-03 07:05:24 +02:00

[202510] Changed the IRegisters.getBitFields() method to take a generic IDMContext argument.

This commit is contained in:
Pawel Piech 2008-03-28 18:21:36 +00:00
parent d5f39af5a8
commit af4f8c99e1
2 changed files with 2 additions and 2 deletions

View file

@ -152,7 +152,7 @@ public interface IRegisters extends IFormattedValues {
* @param ctx Context for the returned data.
* @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

View file

@ -490,7 +490,7 @@ public class MIRegisters extends AbstractDsfService implements IRegisters {
* (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)
*/
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.done();
}