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 16290 Details for
Bug 78382
CDT swallows output from GDB "monitor" command
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]
Stopgap hack
consolecmdoutput.txt (text/plain), 976 bytes, created by
Oyvind Harboe
on 2004-12-02 07:09:51 EST
(
hide
)
Description:
Stopgap hack
Filename:
MIME Type:
Creator:
Oyvind Harboe
Created:
2004-12-02 07:09:51 EST
Size:
976 bytes
patch
obsolete
>Index: RxThread.java >=================================================================== >RCS file: /home/tools/org.eclipse.cdt.debug.mi.core/mi/org/eclipse/cdt/debug/mi/core/RxThread.java,v >retrieving revision 1.2 >diff -u -r1.2 RxThread.java >--- RxThread.java 11 Nov 2004 03:02:58 -0000 1.2 >+++ RxThread.java 2 Dec 2004 12:03:42 -0000 >@@ -342,6 +342,21 @@ > } catch (IOException e) { > } > } >+ } else { >+ /* dump to GDB console as a fallback... */ >+ OutputStream console = session.getConsolePipe(); >+ if (console != null) { >+ MITargetStreamOutput out = (MITargetStreamOutput) stream; >+ String str = out.getString(); >+ // Process the console stream too. >+ if (str != null) { >+ try { >+ console.write(str.getBytes()); >+ console.flush(); >+ } catch (IOException e) { >+ } >+ } >+ } > } > } else if (stream instanceof MILogStreamOutput) { > // This is meant for the gdb console.
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 78382
: 16290