From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp1.atof.net (smtp1.atof.net [52.86.233.228]) by sourceware.org (Postfix) with ESMTPS id 819303858D1E for ; Mon, 6 Feb 2023 21:00:09 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org 819303858D1E Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=gluelogic.com Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=gluelogic.com X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org X-Spam-Language: en X-Spam-Relay-Country: X-Spam-DCC: B=; R=smtp1.atof.net 1102; Body=1 Fuz1=1 Fuz2=1 X-Spam-RBL: X-Spam-PYZOR: Reported 0 times. Date: Mon, 6 Feb 2023 15:59:59 -0500 From: gs-cygwin.com@gluelogic.com To: Yeo Kai Wei Cc: cygwin@cygwin.com Subject: Re: [FEEDBACK] Issue with fd_set, FD_ZERO, FD_SET, FD_SETSIZE : Cygwin Message-ID: References: MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: X-Spam-Status: No, score=-0.6 required=5.0 tests=BAYES_00,BODY_8BITS,KAM_DMARC_STATUS,SPF_HELO_NONE,SPF_PASS,TXREP autolearn=ham autolearn_force=no version=3.4.6 List-Id: On Tue, Feb 07, 2023 at 04:33:53AM +0800, Yeo Kai Wei wrote: > Hi All, > > Thanks for the help. > > I tried adding "#include ". > > However, this is the error message that was returned to me. > > $ gcc -o selectStdIn selectStdIn.c > selectStdIn.c:9:10: fatal error: sys/select.h: No such file or directory >  #include > > Thank you. > > On 7/2/2023 4:30 am, gs-cygwin.com@gluelogic.com wrote: > > On Tue, Feb 07, 2023 at 04:25:22AM +0800, Yeo Kai Wei via Cygwin wrote: > > > Hi, > > > > > > I would like to report an issue with Cygwin 3.4.2 on Windows. > > > > > > It doesn't seem to be able to work with  fd_set, FD_ZERO, FD_SET, FD_SETSIZE > > > macros. > > > > > > The code is in italics. The filename was selectStdIn.c. The terminal command > > > used was "gcc -o selectStdIn selectStdIn.c" > > > > > > Thank you. > > > > > > / > > > / > > > > > > /CODE > > > / > > > > > > /#include // > > > //#include // > > > //#include // > > > //#include // > > > / / > > > //void main()// > > > //{// > > > //    fd_set fds; //set of file descriptors// > > > / / > > > //    struct timeval tv;// > > > / / > > > //    int flag;// > > > / / > > > //    char byte;// > > > / / > > > //    FD_ZERO(&fds);// > > > / / > > > //    FD_SET(0, &fds);// > > > / / > > > //    tv.tv_sec = 5;// > > > / / > > > //    tv.tv_usec = 0;// > > > / / > > > //    flag = select(FD_SETSIZE, // > > > //            &fds,// > > > //            NULL,// > > > //            NULL,// > > > //            &tv);// > > > / / > > > //    if(-1 == flag)// > > > //        perror("select error");// > > > //    else if(flag)// > > > //    {// > > > //        read(0,&byte,1);// > > > / / > > > //        puts("data read");// > > > //    }// > > > / / > > > //    if(flag)// > > > //        printf("The byte value is %c\n", byte);// > > > //// > > > //}/ > > > > > > > > > TERMINAL COMMANDS > > > > > > $ gcc -o selectStdIn selectStdIn.c > > > selectStdIn.c: In function 'main': > > > selectStdIn.c:8:2: error: unknown type name 'fd_set'; did you mean 'fpos_t'? > > >   fd_set fds; //set of file descriptors > > >   ^~~~~~ > > >   fpos_t > > > selectStdIn.c:16:2: warning: implicit declaration of function 'FD_ZERO' > > > [-Wimpli > > > cit-function-declaration] > > >   FD_ZERO(&fds); > > >   ^~~~~~~ > > > selectStdIn.c:18:2: warning: implicit declaration of function 'FD_SET' > > > [-Wimplic > > > it-function-declaration] > > >   FD_SET(0, &fds); > > >   ^~~~~~ > > > selectStdIn.c:24:9: warning: implicit declaration of function 'select'; did > > > you > > > mean 'sleep'? [-Wimplicit-function-declaration] > > >   flag = select(FD_SETSIZE, > > >          ^~~~~~ > > >          sleep > > > selectStdIn.c:24:16: error: 'FD_SETSIZE' undeclared (first use in this > > > function) > > >   flag = select(FD_SETSIZE, > > >                 ^~~~~~~~~~ > > > selectStdIn.c:24:16: note: each undeclared identifier is reported only once > > > for > > > each function it appears in > > $ man select > > > > #include Please post at bottom of messages on this mailing list. You need to install the cygwin-devel package to get Cheers, Glenn