This is the mail archive of the cygwin@sourceware.cygnus.com mailing list for the Cygwin project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Blocking I/O with Cygwin v1.0


Dear Cygnus,

     A am running Cygwin v1.0 from the CD and have noticed that by
default I/O is non-blocked.  Shouldn't it be blocked by default,
and a call to fcntl() be required in order to set non-blocked mode?

     Example test program:

#include <stdio.h>

main()
{
    char Ch;

    Ch = getc(stdin);
    while (Ch != 'q') {
        putc(Ch, stdout);
        Ch = getc(stdin);
    }
}

     If I run this program and type in 12345678, on Cygwin B20.1
and on my Unix worstation I see the following on my screen:
12345678
12345678

     But if I try this with Cygwin v1.0 I get the following:
1122334455667788

     Could this possibly be fixed by stty?  If not, are fcntl() calls working
with v1.0?

P.S. This problem causes "bc" and "dc" to not accept backspaces (v1.0).


                Many thanks,

                Jim Grishaw.
                (dtcohen@aol.com)

--
Want to unsubscribe from this list?
Send a message to cygwin-unsubscribe@sourceware.cygnus.com


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]