Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.
View | Details | Raw Unified | Return to bug 202510
Collapse All | Expand All

(-)src/org/eclipse/dd/dsf/debug/service/IRegisters.java (-1 / +1 lines)
Lines 152-158 Link Here
152
     * @param ctx Context for the returned data.
152
     * @param ctx Context for the returned data.
153
     * @param rm Request completion monitor.
153
     * @param rm Request completion monitor.
154
     */
154
     */
155
    void getBitFields(IRegisterDMContext ctx, DataRequestMonitor<IBitFieldDMContext[]> rm);
155
    void getBitFields(IDMContext ctx, DataRequestMonitor<IBitFieldDMContext[]> rm);
156
    
156
    
157
    /** 
157
    /** 
158
     * Writes a register value for a given register to the target
158
     * Writes a register value for a given register to the target
(-)src/org/eclipse/dd/mi/service/MIRegisters.java (-1 / +1 lines)
Lines 490-496 Link Here
490
     * (non-Javadoc)
490
     * (non-Javadoc)
491
     * @see org.eclipse.dd.dsf.debug.service.IRegisters#getBitFields(org.eclipse.dd.dsf.debug.service.IRegisters.IRegisterDMContext, org.eclipse.dd.dsf.concurrent.DataRequestMonitor)
491
     * @see org.eclipse.dd.dsf.debug.service.IRegisters#getBitFields(org.eclipse.dd.dsf.debug.service.IRegisters.IRegisterDMContext, org.eclipse.dd.dsf.concurrent.DataRequestMonitor)
492
     */
492
     */
493
    public void getBitFields( IRegisterDMContext regDmc , DataRequestMonitor<IBitFieldDMContext[]> rm ) {
493
    public void getBitFields( IDMContext regDmc , DataRequestMonitor<IBitFieldDMContext[]> rm ) {
494
        rm.setStatus(new Status(IStatus.ERROR, MIPlugin.PLUGIN_ID, NOT_SUPPORTED, "BitField not supported", null)); //$NON-NLS-1$
494
        rm.setStatus(new Status(IStatus.ERROR, MIPlugin.PLUGIN_ID, NOT_SUPPORTED, "BitField not supported", null)); //$NON-NLS-1$
495
        rm.done();
495
        rm.done();
496
    }
496
    }

Return to bug 202510