musl/include/sys/select.h, branch master musl - an implementation of the standard library for Linux-based systems add time64 symbol name redirects to public headers, under arch control 2019年10月28日T23:26:52+00:00 Rich Felker dalias@aerifal.cx 2019年07月31日T19:24:58+00:00 1febd21d3fb7b78f6fc13e48b3ff2a396a607a15 a _REDIR_TIME64 macro is introduced, which the arch's alltypes.h is expected to define, to control redirection of symbol names for interfaces that involve time_t and derived types. this ensures that object files will only be linked to libc interfaces matching the ABI whose headers they were compiled against. along with time32 compat shims, which will be introduced separately, the redirection also makes it possible for a single libc (static or shared) to be used with object files produced with either the old (32-bit time_t) headers or the new ones after 64-bit time_t switchover takes place. mixing of such object files (or shared libraries) in the same program will also be possible, but must be done with care; ABI between libc and a consumer of the libc interfaces is guaranteed to match by the the symbol name redirection, but pairwise ABI between consumers of libc that define interfaces between each other in terms of time_t is not guaranteed to match. this change adds a dependency on an additional "GNU C" feature to the public headers for existing 32-bit archs, which is generally undesirable; however, the feature is one which glibc has depended on for a long time, and thus which any viable alternative compiler is going to need to provide. 64-bit archs are not affected, nor will future 32-bit archs be, regardless of whether they are "new" on the kernel side (e.g. riscv32) or just newly-added (e.g. a new sparc or xtensa port). the same applies to newly-added ABIs for existing machine-level archs.
a _REDIR_TIME64 macro is introduced, which the arch's alltypes.h is
expected to define, to control redirection of symbol names for
interfaces that involve time_t and derived types. this ensures that
object files will only be linked to libc interfaces matching the ABI
whose headers they were compiled against.
along with time32 compat shims, which will be introduced separately,
the redirection also makes it possible for a single libc (static or
shared) to be used with object files produced with either the old
(32-bit time_t) headers or the new ones after 64-bit time_t switchover
takes place. mixing of such object files (or shared libraries) in the
same program will also be possible, but must be done with care; ABI
between libc and a consumer of the libc interfaces is guaranteed to
match by the the symbol name redirection, but pairwise ABI between
consumers of libc that define interfaces between each other in terms
of time_t is not guaranteed to match.
this change adds a dependency on an additional "GNU C" feature to the
public headers for existing 32-bit archs, which is generally
undesirable; however, the feature is one which glibc has depended on
for a long time, and thus which any viable alternative compiler is
going to need to provide. 64-bit archs are not affected, nor will
future 32-bit archs be, regardless of whether they are "new" on the
kernel side (e.g. riscv32) or just newly-added (e.g. a new sparc or
xtensa port). the same applies to newly-added ABIs for existing
machine-level archs.
make brace placement in public header typedef'd structs consistent 2016年07月03日T20:19:28+00:00 Rich Felker dalias@aerifal.cx 2016年07月03日T20:19:28+00:00 ee3f0c551669ca1c61abac0888f93a27b0b17856 commit befa5866ee30d09c0c96e88af2eabff5911342ea performed this change for struct definitions that did not also involve typedef, but omitted the latter.
commit befa5866ee30d09c0c96e88af2eabff5911342ea performed this change
for struct definitions that did not also involve typedef, but omitted
the latter.
add NFDBITS in sys/select.h with appropriate feature tests 2013年07月06日T05:12:28+00:00 Rich Felker dalias@aerifal.cx 2013年07月06日T05:12:28+00:00 ca9aff6a1646c7fc106bfbb9399b3a1bcb14f18b the main use for this macro seems to be knowing the correct allocation granularity for dynamic-sized fd_set objects. such usage is non-conforming and results in undefined behavior, but it is widespread in applications.
the main use for this macro seems to be knowing the correct allocation
granularity for dynamic-sized fd_set objects. such usage is
non-conforming and results in undefined behavior, but it is widespread
in applications.
remove all remaining redundant __restrict/__inline/_Noreturn defs 2012年09月08日T21:14:52+00:00 Rich Felker dalias@aerifal.cx 2012年09月08日T21:14:52+00:00 455f96857f91d14e193219ca00969354a981c09c
use restrict everywhere it's required by c99 and/or posix 2008 2012年09月07日T02:44:55+00:00 Rich Felker dalias@aerifal.cx 2012年09月07日T02:44:55+00:00 400c5e5c8307a2ebe44ef1f203f5a15669f20347 to deal with the fact that the public headers may be used with pre-c99 compilers, __restrict is used in place of restrict, and defined appropriately for any supported compiler. we also avoid the form [restrict] since older versions of gcc rejected it due to a bug in the original c99 standard, and instead use the form *restrict.
to deal with the fact that the public headers may be used with pre-c99
compilers, __restrict is used in place of restrict, and defined
appropriately for any supported compiler. we also avoid the form
[restrict] since older versions of gcc rejected it due to a bug in the
original c99 standard, and instead use the form *restrict.
FD_ISSET must return an int. this is the easiest way. 2011年09月24日T02:24:33+00:00 Rich Felker dalias@aerifal.cx 2011年09月24日T02:24:33+00:00 c41a76f58ce0238172effe982f2cee7bbd2a60a4 casting to int would not be correct because high bits could be lost. mapping the high bits down onto low bits would be costlier in the common case where the result is just used in a conditional. changing the type of the bit array elements to int would permute the order of the bit array on 64-bit big endian systems, so that's not an option either.
casting to int would not be correct because high bits could be lost.
mapping the high bits down onto low bits would be costlier in the
common case where the result is just used in a conditional. changing
the type of the bit array elements to int would permute the order of
the bit array on 64-bit big endian systems, so that's not an option
either.
fix broken FD_* macros on 64-bit targets 2011年08月27日T23:42:13+00:00 Rich Felker dalias@aerifal.cx 2011年08月27日T23:42:13+00:00 1f5ff26cd788d29c77e322e7584da46466723572 1 is too small if int is 32-bit but unsigned long is 64-bit. be explicit and use 1UL.
1 is too small if int is 32-bit but unsigned long is 64-bit. be
explicit and use 1UL.
add useless type fd_mask. it's in the reserved namespace. 2011年04月14日T20:23:31+00:00 Rich Felker dalias@aerifal.cx 2011年04月14日T20:23:31+00:00 33a3f202d1998ca7ba2d3bec1e4886accc0053a7
fix and cleanup suseconds_t/timeval stuff (broken on 64-bit) 2011年04月13日T17:16:49+00:00 Rich Felker dalias@aerifal.cx 2011年04月13日T17:16:49+00:00 cac7d837ccc35b7e80d8f1eb7338f8e9d8b1b2d8 trash in the upper 32 bits was making the kernel sleep forever in select on 64-bit systems.
trash in the upper 32 bits was making the kernel sleep forever in
select on 64-bit systems.
initial check-in, version 0.5.0 2011年02月12日T05:22:29+00:00 Rich Felker dalias@aerifal.cx 2011年02月12日T05:22:29+00:00 0b44a0315b47dd8eced9f3b7f31580cf14bbfc01

AltStyle によって変換されたページ (->オリジナル) /