X-Spam-Check-By: sourceware.org
Content-class: urn:content-classes:message
MIME-Version: 1.0
Content-Type: text/plain; 	charset="US-ASCII"
Subject:  stdin broken for windows console app under rxvt
Date: Mon, 13 Mar 2006 10:21:03 +1100
Message-ID: <A521CED2010C244BBDC949DEDF00DCE23645F0@sydexchange2.vignette.com>
From: "Robinson, Mark" <Mark.Robinson@vignette.com>
To: <cygwin@cygwin.com>
Mailing-List: contact cygwin-help@cygwin.com; run by ezmlm
List-Subscribe: <mailto:cygwin-subscribe@cygwin.com>
List-Archive: <http://sourceware.org/ml/cygwin/>
List-Post: <mailto:cygwin@cygwin.com>
List-Help: <mailto:cygwin-help@cygwin.com>, <http://sourceware.org/ml/#faqs>
Sender: cygwin-owner@cygwin.com
Mail-Followup-To: cygwin@cygwin.com
Delivered-To: mailing list cygwin@cygwin.com
Content-Transfer-Encoding: 8bit
X-MIME-Autoconverted: from quoted-printable to 8bit by delorie.com id k2CNORlj026368

Greetings

A simple console app compiled with MingW (-mno-cygwin) (or VC++) cannot
read from stdin when executed in an rxvt or xterm terminal:

#include <stdio.h>
main() {
  int c;
  fputc(isatty(stdin), stdout);
  while ((c = getc(stdin)) != EOF) fputc(c, stdout);
}

Furthermore, isatty(stdin) returns 0.

Both examples behave under cmd, or cmd/bash with CYGWIN=notty set, or if
they're compiled without the mingw flag.

Any clues gratefully accepted.

cheers
mark

--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Problem reports:       http://cygwin.com/problems.html
Documentation:         http://cygwin.com/docs.html
FAQ:                   http://cygwin.com/faq/


