diff --git a/headers/posix/sys/select.h b/headers/posix/sys/select.h index 87ae4c1554..4ad186cc9d 100644 --- a/headers/posix/sys/select.h +++ b/headers/posix/sys/select.h @@ -1,5 +1,5 @@ /* - * Copyright 2002-2012 Haiku, Inc. All Rights Reserved. + * Copyright 2002-2024, Haiku, Inc. All rights reserved. * Distributed under the terms of the MIT License. */ #ifndef _SYS_SELECT_H @@ -10,23 +10,18 @@ #include #include +#include -/* If FD_SET is already defined, only the select() prototype is - * exported in this header. - */ -#ifndef FD_SET - -/* You can define your own FDSETSIZE if you need more bits - but - * it should be enough for most uses. - */ +/* Custom FD_SETSIZEs can be defined if more bits are needed, but the default + * should suffice for most uses. */ #ifndef FD_SETSIZE -# define FD_SETSIZE 1024 +# define FD_SETSIZE 1024 #endif typedef __haiku_uint32 fd_mask; -#define NFDBITS (sizeof(fd_mask) * 8) /* bits per mask */ +#define NFDBITS (sizeof(fd_mask) * 8) /* bits per mask */ typedef struct fd_set { fd_mask bits[((FD_SETSIZE) + ((NFDBITS) - 1)) / (NFDBITS)]; @@ -35,17 +30,12 @@ typedef struct fd_set { #define _FD_BITSINDEX(fd) ((fd) / NFDBITS) #define _FD_BIT(fd) (1L << ((fd) % NFDBITS)) -/* FD_ZERO uses memset */ -#include - #define FD_ZERO(set) memset((set), 0, sizeof(fd_set)) #define FD_SET(fd, set) ((set)->bits[_FD_BITSINDEX(fd)] |= _FD_BIT(fd)) #define FD_CLR(fd, set) ((set)->bits[_FD_BITSINDEX(fd)] &= ~_FD_BIT(fd)) #define FD_ISSET(fd, set) ((set)->bits[_FD_BITSINDEX(fd)] & _FD_BIT(fd)) #define FD_COPY(source, target) (*(target) = *(source)) -#endif /* FD_SET */ - #ifdef __cplusplus extern "C" { @@ -60,4 +50,5 @@ extern int select(int numBits, struct fd_set *readBits, struct fd_set *writeBits } #endif + #endif /* _SYS_SELECT_H */