i have a closed source program that prints output to standard output. i need to parse the output. so i redirect the output to a fifo (from which i can read in the parent process that forks and execs the binary) using dup2 and then exec the program. the problem is that the fprintf calls in the file become buffered because it is now writing to a file.
i tried calling setvbuf with _IONBF on stdout before calling exec. but the problem still exists.
why does setvbuf not help in my case?
how can i force the output to get flushed?