Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
1answer
2k views

Difference between fflush and fsync

I thought fsync() does fflush() internally so using fsync() on a stream is OK. But i am getting unexpected result when executed under network I/O. My code snippet: FILE* fp = fopen(file,"wb"); ...
4
votes
3answers
354 views

Is using fflush(stdout) as fprintf() argument safe?

To I came upon this line of code: fprintf(stdout, "message", fflush(stdout)); Note that the message does not contain any %-tag. Is that safe in visual c++? fflush() returns 0 on success and EOF on ...
4
votes
2answers
728 views

Using fflush(stdin)

So a quick google search for fflush(stdin) for clearing the input buffer reveals numerous websites warning against using it. And yet that's exactly how my CS professor taught the class to do it. How ...
3
votes
4answers
287 views

Oracle PL/SQL UTL_FILE.PUT buffering

I'm writing a large file > 7MB from an Oracle stored procedure and the requirements are to have no line termination characters (no carriage return/line feed) at the end of each record. I've written a ...
2
votes
3answers
63 views

C: fflush function not working?

I can't seem to figure out what's wrong with this code: #include <stdio.h> #include <ctype.h> #include <string.h> #include <stdlib.h> #define MAX 100 #define TRUE 1 #define ...
2
votes
5answers
3k views

I am not able to flush stdin

How to flush the stdin?? Why is it not working in the following code snippet? #include <string.h> #include <stdio.h> #include <malloc.h> #include <fcntl.h> int main() { ...
1
vote
2answers
50 views

The screen print is confusing ?

my code is : #include <stdio.h> void main( int argc, char** argv) { printf("%s", argv[0]); system("pwd"); } The output is: [river@localhost studio]$ ./a.out ...
1
vote
2answers
215 views

fflush fails on Visual C++ 2010

I'm trying to run some code but fflush() with the error: Invalid file descriptor. File possibly closed by a different thread Here is the relevant part of the code: fhandle = ...
1
vote
4answers
809 views

fflush(stdout) in c

Right when I am at fflush(stdout) and I break there in GDB, can I know what is there in stdout before I actually print it? How can I know what is there in stdout at any point in time?
1
vote
4answers
209 views

fflush and while loop

I have been trying to use fflush to make a progress bar. To test fflush, I wrote the small code below. It works as it supposed to when I uncomment "sleep(1);" but it works in an unexpected way if ...
1
vote
1answer
49 views

Keeping 'almost complete' logs even when system crashes

We have a c++ application (console) that runs on windows and unix. This application used output files to output verbose log files of system calls/prints/etc. The prblem is, that in certain occasion ...
0
votes
0answers
27 views

windows console program stdout is buffered when using pipe redirection

i have a long run server program(say, program A) which is written in QT/c++. the program is not so stable so i decide to write a python script to restart it if it crashes. the problem is that the ...
0
votes
3answers
85 views

Output not printing without fflush(stdout)

I don't understand why sometimes I need to use fflush() and sometimes not. My program is segfaulting at the moment and I am debugging it with print statements. When a program segfaults, does stdout ...
0
votes
4answers
283 views

My program crashes on fflush because of seg fault, … but not always?

What possible reasons do you know for the situation, described in the title? Here's what my bt looks like: #0 0x00a40089 in ?? () #1 0x09e3fac0 in ?? () #2 0x09e34f30 in ?? () #3 0xb7ef9074 in ?? ...
0
votes
4answers
575 views

fflush and 'no disk space left'

I'm writing a program, some kind of database. While I was reading manual of fclose(3) I found that it calls fflush(3) to flush FILE* buffers to disk (actually to OS buffer, but it doesn't matter right ...
-1
votes
3answers
201 views

using fflush on C++

Can someone help me using fflush in C++ Here is a sample code in C #include <stdio.h> using namespace std; int a,b,i; char result[20]; int main() { scanf("%d %d\n", &a, &b); for ...