From kdevelop-bugs Sun Mar 23 16:33:58 2008 From: bernd buschinski Date: Sun, 23 Mar 2008 16:33:58 +0000 To: kdevelop-bugs Subject: [Bug 159749] New: stdout/stderr output is out of sync Message-Id: <20080323173356.159749.b.buschinski () web ! de> X-MARC-Message: https://marc.info/?l=kdevelop-bugs&m=120629021617695 ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee. http://bugs.kde.org/show_bug.cgi?id=159749 Summary: stdout/stderr output is out of sync Product: kdevelop Version: unspecified Platform: Gentoo Packages OS/Version: Linux Status: UNCONFIRMED Severity: normal Priority: NOR Component: general AssignedTo: kdevelop-bugs kdevelop org ReportedBy: b.buschinski web de Version: 3.5.1-svn (using KDE 3.5.9) Installed from: Gentoo Packages Compiler: gcc-4.2.2 OS: Linux I wrote a app that mixes stdout stderr ouput #include int main(int argc, char *argv[]) { fprintf(stdout,"%s:%d:%s %s\n",__FILE__,__LINE__,__func__,"1"); fprintf(stdout,"%s:%d:%s %s\n",__FILE__,__LINE__,__func__,"2"); fprintf(stderr,"%s:%d:%s %s\n",__FILE__,__LINE__,__func__,"3"); fprintf(stdout,"%s:%d:%s %s\n",__FILE__,__LINE__,__func__,"4"); fprintf(stderr,"%s:%d:%s %s\n",__FILE__,__LINE__,__func__,"5"); fprintf(stdout,"\n\n\n"); fprintf(stdout,"%s\n","1"); fprintf(stdout,"%s\n","2"); fprintf(stderr,"%s\n","3"); fprintf(stdout,"%s\n","4"); fprintf(stderr,"%s\n","5"); } and the output on the widget is mixed, sometimes first all stdout then stderr and the opposite, while the output on the konsole is ok _______________________________________________ KDevelop-bugs mailing list KDevelop-bugs@kdevelop.org https://barney.cs.uni-potsdam.de/mailman/listinfo/kdevelop-bugs