Opened 18 years ago
Closed 18 years ago
#1155 closed defect (fixed)
Disordered & delayed output
| Reported by: | pitts | Owned by: | eugene |
|---|---|---|---|
| Priority: | high | Milestone: | |
| Component: | DVO | Version: | 2.6 |
| Severity: | normal | Keywords: | |
| Cc: |
Description
When opening up a file for output using the command "output", output sent by "fprintf" will be placed in the file before output sent by "echo" no matter the order in which they are called.
"fprintf" output will not completely show up in the output file until DVO has been closed.
Note:
See TracTickets
for help on using tickets.

both of these functions write to stdout or the equivalent buffer or output file. The output should be in sequence, and this works for me.
The output will not be visible until the output file is closed (by setting output to stdout). I've added an fflush call when the file is closed so the data is then visible immediately.