Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
RE: [dsdp-dd-dev] Updating registers view when memory changes?

Thanks guys!  I figured out the problem in my plugin with Marc's help.

--- On Mon, 4/13/09, Rohrbach, Randy <randy.rohrbach@xxxxxxxxxxxxx> wrote:

> From: Rohrbach, Randy <randy.rohrbach@xxxxxxxxxxxxx>
> Subject: RE: [dsdp-dd-dev] Updating registers view when memory changes?
> To: "Device Debugging developer discussions" <dsdp-dd-dev@xxxxxxxxxxx>
> Date: Monday, April 13, 2009, 10:32 AM
> Norman
> 
>    Marc is correct that the view should
> update, if the appropriate
> IMemoryChangedEvent's are
>    generated. Have you checked to see that
> your memory service is
> generating them.
> 
> Randy
> 
> -----Original Message-----
> From: dsdp-dd-dev-bounces@xxxxxxxxxxx
> [mailto:dsdp-dd-dev-bounces@xxxxxxxxxxx]
> On Behalf Of Norman Yee
> Sent: Thursday, April 09, 2009 4:03 PM
> To: dsdp-dd-dev@xxxxxxxxxxx
> Subject: [dsdp-dd-dev] Updating registers view when memory
> changes?
> 
> 
> I'm working on a custom debugger plugin and I'm running
> into a problem
> where the registers view doesn't get updated when you
> change memory in
> the memory view.  The two views need to be
> synchronized when a memory
> mapped register is changed.  Is this something that
> should be
> implemented in my custom debugger plugin or is it something
> that should
> be handled in the framework?
> 
> I'm trying to work around this problem by modifying my
> registers DSF
> service class to handle the memory changed event like
> this:
> 
> public class Registers extends AbstractDsfService 
>     implements IRegisters, IEventListener {
> 
>     @DsfServiceEventHandler
>     public void
> eventDispatched(IMemoryChangedEvent e) {
> 
>     }    
> }
> 
> Then in my eventDispatched(), I want to force the contents
> of the
> registers view to refresh.  How do I do that? 
> Thanks in advance.
> 
> 
> 
> 
> 
>       
> _______________________________________________
> dsdp-dd-dev mailing list
> dsdp-dd-dev@xxxxxxxxxxx
> https://dev.eclipse.org/mailman/listinfo/dsdp-dd-dev
> _______________________________________________
> dsdp-dd-dev mailing list
> dsdp-dd-dev@xxxxxxxxxxx
> https://dev.eclipse.org/mailman/listinfo/dsdp-dd-dev
> 





Back to the top