Community
Participate
Working Groups
Build Identifier: 20110218-0911 When debugging code with a fflush call, the debugger halts. This message is printed on the console. "*stopped,reason="end-stepping-range",frame={addr="0x000000000040fe1e",func="util",args=[],file="test_fb.c",fullname="test_fb.c",line="177"},thread-id="1",stopped-threads="all" " Code example: #include <stdio.h> int main(void) { printf("Hello World"); fflush(stdout); return 0; } Reproducible: Always Steps to Reproduce: 1. Debug code with fflush 2. Single step the fflush line 3. The debugger will halt