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 108341 Details for
Bug 237556
[non-stop] Add support for non-stop multi-threaded debugging in GDB.
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]
Missing or removed check for threadId 0
zpatch.txt (text/plain), 1.11 KB, created by
Marc Khouzam
on 2008-07-24 09:36:31 EDT
(
hide
)
Description:
Missing or removed check for threadId 0
Filename:
MIME Type:
Creator:
Marc Khouzam
Created:
2008-07-24 09:36:31 EDT
Size:
1.11 KB
patch
obsolete
>### Eclipse Workspace Patch 1.0 >#P org.eclipse.dd.mi >Index: src/org/eclipse/dd/mi/service/command/AbstractMIControl.java >=================================================================== >RCS file: /cvsroot/dsdp/org.eclipse.dd.dsf/plugins/org.eclipse.dd.mi/src/org/eclipse/dd/mi/service/command/AbstractMIControl.java,v >retrieving revision 1.15 >diff -u -r1.15 AbstractMIControl.java >--- src/org/eclipse/dd/mi/service/command/AbstractMIControl.java 22 Jul 2008 19:19:47 -0000 1.15 >+++ src/org/eclipse/dd/mi/service/command/AbstractMIControl.java 24 Jul 2008 13:33:30 -0000 >@@ -259,7 +259,7 @@ > if (runControl != null && execDmc != null && runControl.isSuspended(execDmc)) { > // Before the command is sent, Check the Thread Id and send it to > // the queue only if the id has been changed. >- if (targetThread != -1 && targetThread != fCurrentThreadId) { >+ if (targetThread != -1 && targetThread != 0 && targetThread != fCurrentThreadId) { > fCurrentThreadId = targetThread; > resetCurrentStackLevel(); > CommandHandle cmdHandle = new CommandHandle(new MIThreadSelect(execDmc), null);
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 237556
:
107226
|
107235
|
107620
|
107674
|
107792
|
108117
|
108341
|
108373
|
108457
|
108503
|
108505