is the below inside the while loop, if not it should be.
FD_ZERO ( &fds );
FD_SET ( 0, &fds );
struct timeval tv;
tv.tv_sec = 0;
tv.tv_usec = 0;
if the answer for my first question is yes, then please try this timeout
tv.tv_sec = 0;
tv.tv_usec = 1;
if the above doest work, try this
while(fgets(buf, sizeof ( buf ) - 1, stdin) !=NULL) { }
