Mailing-List: contact cygwin-help@sourceware.cygnus.com; run by ezmlm List-Subscribe: List-Archive: List-Post: List-Help: , Sender: cygwin-owner@sourceware.cygnus.com Delivered-To: mailing list cygwin@sourceware.cygnus.com From: Ian Collins To: cygwin@sourceware.cygnus.com Subject: termio from vc++ console app Date: Wed, 8 Dec 1999 18:31:33 +1300 X-Mailer: KMail [version 1.0.28] Content-Type: text/plain MIME-Version: 1.0 Message-Id: <99120818322301.22818@p427-tnt6> Content-Transfer-Encoding: 8bit I have a Console Application created with Visual C++, and want to run it in a bash window. When the application is run (see code below), printf works fine, but isatty(fileno(stdin)) returns 0 (no terminal attached) Is there any way to do this?? // // Example code... // #include "stdafx.h" #include #include int main(int argc, char* argv[]) { int i; i = _isatty(_fileno(stdin)); printf("isatty returned: %d\n", i); return 0; } I also tried creating the same application using the MKS NutCracker suite (that application had ioctl) calls. This application also fails (and the ioctl calls failed with "Invalid Argument"). (A gut feeling - would compiling bash using VC++ solve the problem - gulp!!). Regards, Ian Collins -- Want to unsubscribe from this list? Send a message to cygwin-unsubscribe@sourceware.cygnus.com