Download
Getting Started
Members
Projects
Community
Marketplace
Events
Planet Eclipse
Newsletter
Videos
Participate
Report a Bug
Forums
Mailing Lists
Wiki
IRC
How to Contribute
Working Groups
Automotive
Internet of Things
LocationTech
Long-Term Support
PolarSys
Science
OpenMDM
More
Community
Marketplace
Events
Planet Eclipse
Newsletter
Videos
Participate
Report a Bug
Forums
Mailing Lists
Wiki
IRC
How to Contribute
Working Groups
Automotive
Internet of Things
LocationTech
Long-Term Support
PolarSys
Science
OpenMDM
Toggle navigation
Bugzilla – Attachment 15148 Details for
Bug 72507
Eclipse froze when expanding node in Variables view
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
Log In
[x]
|
Terms of Use
|
Copyright Agent
Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read
this important communication.
[patch]
serializes monitor information retrieval
jdt-debug-ui.patch (text/plain), 1.07 KB, created by
Darin Wright
on 2004-10-13 17:49:44 EDT
(
hide
)
Description:
serializes monitor information retrieval
Filename:
MIME Type:
Creator:
Darin Wright
Created:
2004-10-13 17:49:44 EDT
Size:
1.07 KB
patch
obsolete
>Index: ui/org/eclipse/jdt/internal/debug/ui/ThreadMonitorManager.java >=================================================================== >RCS file: /home/eclipse/org.eclipse.jdt.debug.ui/ui/org/eclipse/jdt/internal/debug/ui/ThreadMonitorManager.java,v >retrieving revision 1.1 >diff -u -r1.1 ThreadMonitorManager.java >--- ui/org/eclipse/jdt/internal/debug/ui/ThreadMonitorManager.java 12 Oct 2004 23:43:37 -0000 1.1 >+++ ui/org/eclipse/jdt/internal/debug/ui/ThreadMonitorManager.java 13 Oct 2004 21:38:12 -0000 >@@ -162,7 +162,14 @@ > public void run() { > Object[] threads= fJavaMonitorThreads.values().toArray(); > for (int i = 0; i < threads.length; i++) { >- ((JavaMonitorThread) threads[i]).refresh(); >+ final JavaMonitorThread javaMonitorThread = (JavaMonitorThread) threads[i]; >+ IJavaThread javaThread = javaMonitorThread.getThread(); >+ javaThread.queueRunnable(new Runnable() { >+ public void run() { >+ javaMonitorThread.refresh(); >+ } >+ }); >+ > } > } > }
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 72507
: 15148 |
15149
|
15153