show/hide this revision's text 4 added 1 characters in body

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) { }

show/hide this revision's text 3 added 99 characters in body

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) { }

show/hide this revision's text 2 added 119 characters in body

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;
show/hide this revision's text 1