[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] Changes to emacs/lisp/progmodes/gdb-ui.el
From: |
Nick Roberts |
Subject: |
[Emacs-diffs] Changes to emacs/lisp/progmodes/gdb-ui.el |
Date: |
Tue, 12 Jul 2005 01:31:08 -0400 |
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: