Index: emacs/lisp/progmodes/gdb-ui.el diff -c emacs/lisp/progmodes/gdb-ui.el:1.82 emacs/lisp/progmodes/gdb-ui.el:1.83 *** emacs/lisp/progmodes/gdb-ui.el:1.82 Mon Jul 4 16:59:19 2005 --- emacs/lisp/progmodes/gdb-ui.el Tue Jul 12 05:31:08 2005 *************** *** 50,55 **** --- 50,68 ---- ;; still under development and is part of a process to migrate Emacs from ;; annotations to GDB/MI. ;; + ;; Windows Platforms: + ;; + ;; If you are using Emacs and GDB on Windows you will need to flush the buffer + ;; explicitly in your program if you want timely display of I/O in Emacs. + ;; Alternatively you can make the output stream unbuffered, for example, by + ;; using a macro: + ;; + ;; #ifdef UNBUFFERED + ;; setvbuf(stdout,(char *)NULL, _IONBF,0); + ;; #endif + ;; + ;; and compiling with -DUNBUFFERED while debugging. + ;; ;; Known Bugs: ;; ;; TODO:
_______________________________________________ Emacs-diffs mailing list [email protected] http://lists.gnu.org/mailman/listinfo/emacs-diffs
