Call fflush for each item in JitDisasmSummary#120458
Conversation
There was a problem hiding this comment.
Pull Request Overview
This PR adds an fflush() call to ensure immediate output of JIT disassembly summary messages. The change forces the output buffer to be flushed after each compiled method is logged, providing more reliable debugging output for JIT analysis.
Key changes:
- Added
fflush(jitstdout())after each JIT compilation summary message
|
Tagging subscribers to this area: @JulieLeeMSFT, @jakobbotsch |
AndyAyersMS
left a comment
There was a problem hiding this comment.
FYI, somewhere there's comment that printf(""); does the same thing. Not sure if it's still true though.
I actually copied this |
cc @AndyAyersMS who asked for it