RTEMS: Increase FS_SETSIZE to 256 bits

This commit is contained in:
Chris Johns 2024-02-20 11:46:05 +11:00 committed by Joel Sherrill
parent fc691d0246
commit 8d38c37ed9
1 changed files with 2 additions and 0 deletions

View File

@ -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