From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 1129) id A17E03858C3A; Wed, 13 Mar 2024 13:59:34 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org A17E03858C3A DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1710338374; bh=VUMq/rvTGnce9O3EnlyYGX6VqeuPcs5wtFDejSuxwfQ=; h=From:To:Subject:Date:From; b=j6G1DcVQHwQrj7yibH9B1jiks2Yh17zqoKuRASfp+qaXPhVlahKOAUKgHDxTRUdG5 t+Z3lmllzoffmAW6EYZTJ3ElRfPEyUR5x0kVPCofrOCheR1YxkAeI/BxnzrlNfdH/4 E3WMc47lxq3DCXoUpOjg+KmZCNX5W0pjkdBlEJqw= Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable From: Joel Sherrill To: newlib-cvs@sourceware.org Subject: [newlib-cygwin/main] RTEMS: Increase FS_SETSIZE to 256 bits X-Act-Checkin: newlib-cygwin X-Git-Author: Chris Johns X-Git-Refname: refs/heads/main X-Git-Oldrev: fc691d0246b95807cd2fac83cceb8053fc295eb2 X-Git-Newrev: 8d38c37ed9356e8f26e803fcf28e7592799c870a Message-Id: <20240313135934.A17E03858C3A@sourceware.org> Date: Wed, 13 Mar 2024 13:59:34 +0000 (GMT) List-Id: https://sourceware.org/git/gitweb.cgi?p=3Dnewlib-cygwin.git;h=3D8d38c37ed93= 56e8f26e803fcf28e7592799c870a commit 8d38c37ed9356e8f26e803fcf28e7592799c870a Author: Chris Johns Date: Tue Feb 20 11:46:05 2024 +1100 RTEMS: Increase FS_SETSIZE to 256 bits Diff: --- newlib/libc/include/sys/select.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/newlib/libc/include/sys/select.h b/newlib/libc/include/sys/sel= ect.h index 93d0b79bf..8b5675640 100644 --- a/newlib/libc/include/sys/select.h +++ b/newlib/libc/include/sys/select.h @@ -30,6 +30,8 @@ typedef __sigset_t sigset_t; #ifndef FD_SETSIZE # ifdef __CYGWIN__ # define FD_SETSIZE 1024 +# elifdef __rtems__ +# define FD_SETSIZE 256 # else # define FD_SETSIZE 64 # endif