]> git.baikalelectronics.ru Git - kernel.git/commit
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)
commit07d4c9cab5ef1e7e5f9e508e21ad241bde2d2cef
tree635d020e39f736057d10f5fad9991e68a91e173d
parent4bb6c48e24a870d759ea66c68350de80b0ffdc05
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