tools/nolibc/types: move the FD_* functions to macros in types.h
authorWilly Tarreau <w@1wt.eu>
Sun, 13 Feb 2022 08:52:10 +0000 (09:52 +0100)
committerPaul E. McKenney <paulmck@kernel.org>
Thu, 21 Apr 2022 00:05:43 +0000 (17:05 -0700)
commit8cb98b3fce152e8ba46d1e25515deab08d7ec271
tree635d020e39f736057d10f5fad9991e68a91e173d
parent50850c38b290c22da37a77e24c9382933b200c8c
tools/nolibc/types: move the FD_* functions to macros in types.h

FD_SET, FD_CLR, FD_ISSET, FD_ZERO are often expected to be macros and
not functions. In addition we already have a file dedicated to such
macros and types used by syscalls, it's types.h, so let's move them
there and turn them to macros. FD_CLR() and FD_ISSET() were missing,
so they were added. FD_ZERO() now deals with its own loop so that it
doesn't rely on memset() that sets one byte at a time.

Cc: David Laight <David.Laight@aculab.com>
Signed-off-by: Willy Tarreau <w@1wt.eu>
Signed-off-by: Paul E. McKenney <paulmck@kernel.org>
tools/include/nolibc/nolibc.h
tools/include/nolibc/types.h