This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

Bug 187390 - Assertion in BreakpointManager
Summary: Assertion in BreakpointManager
Status: NEW
Alias: None
Product: third-party
Classification: Unclassified
Component: DBX-Gui (show other bugs)
Version: 6.x
Hardware: PC Solaris
: P3 normal with 1 vote (vote)
Assignee: ivan
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2010-06-09 16:08 UTC by Egor Ushakov
Modified: 2010-06-09 16:09 UTC (History)
0 users

See Also:
Issue Type: DEFECT
Exception Reporter:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Egor Ushakov 2010-06-09 16:08:03 UTC
I set instruction breakpoint in one project and then tried to debug another project and got this assertion:

java.lang.AssertionError
	at com.sun.tools.debugger.dbxgui.debugger.breakpoints.BreakpointManager$BreakpointJob.setRoutingToken(BreakpointManager.java:211)
	at com.sun.tools.debugger.dbxgui.debugger.breakpoints.BreakpointManager.noteDefunctBreakpoint(BreakpointManager.java:525)
	at com.sun.tools.debugger.dbx.DbxDebuggerImpl.setHandlerDefunct(DbxDebuggerImpl.java:2579)
	at com.sun.tools.debugger.dbx.Dbx.handler_defunct(Dbx.java:796)
	at com.sun.tools.swdev.glue.dbx.GPDbxSurrogate.decode_handler_defunct(GPDbxSurrogate.java:644)
Caused: java.lang.reflect.InvocationTargetException
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
	at java.lang.reflect.Method.invoke(Method.java:597)
	at com.sun.tools.swdev.glue.Decoder.invoke(Dispatcher.java:33)
	at com.sun.tools.swdev.glue.Dispatcher.dispatch(Dispatcher.java:70)
	at com.sun.tools.swdev.glue.Messenger.handle_message_help(Messenger.java:331)
	at com.sun.tools.swdev.glue.Messenger.handle_message(Messenger.java:244)
	at com.sun.tools.swdev.glue.Surrogate.cb_message(Surrogate.java:1073)
	at com.sun.tools.swdev.glue.CBInfo.dispatch(CBInfo.java:187)
	at com.sun.tools.swdev.glue.NotifierSwing$1.run(NotifierSwing.java:19)
[catch] at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:199)
	at java.awt.EventQueue.dispatchEvent(EventQueue.java:597)
	at org.netbeans.core.TimableEventQueue.dispatchEvent(TimableEventQueue.java:137)
	at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:269)
	at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:184)
	at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:174)
	at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:169)
	at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:161)
	at java.awt.EventDispatchThread.run(EventDispatchThread.java:122)
Comment 1 Egor Ushakov 2010-06-09 16:09:33 UTC
much easier to reproduce like this:
- create an instruction breakpoint at the address 0x11111
- step into a project
get the assertion