- 05 1月, 2013 1 次提交
-
-
由 rofl0r 提交于
for _Noreturn functions, gcc generates code that trashes the stack frame, and so it makes it impossible to inspect the causes of an assert error in gdb. abort() is not affected (i have not yet investigated why).
-
- 02 1月, 2013 1 次提交
-
-
由 Rich Felker 提交于
-
- 29 12月, 2012 1 次提交
-
-
由 Rich Felker 提交于
reported/requested by Strake; simplified from the provided patch
-
- 28 12月, 2012 1 次提交
-
-
由 Rich Felker 提交于
the old definitions were wrong on some archs. actually, EPOLL_NONBLOCK probably should not even be defined; it is not accepted by the kernel and it's not clear to me whether it has any use at all, even if it did work. this issue should be revisited at some point, but I'm leaving it in place for now in case some applications reference it.
-
- 27 12月, 2012 1 次提交
-
-
由 Rich Felker 提交于
the POLL prefix is in the reserved namespace for poll.h, so no feature test macro checks are needed.
-
- 20 12月, 2012 1 次提交
-
-
由 rofl0r 提交于
-
- 19 12月, 2012 4 次提交
-
-
由 Szabolcs Nagy 提交于
__IS_FP is a portable integer constant expression now (uses that unsigned long long is larger than float) the result casting logic should work now on all compilers supporting typeof
-
由 rofl0r 提交于
-
由 rofl0r 提交于
this is already implemented in the dynliker (see struct debug), but was not exposed. we need it to do so to make wine happy...
-
由 Szabolcs Nagy 提交于
* return type logic is simplified a bit and fixed (see below) * return type of conj and cproj were wrong on int arguments * added comments about the pending issues (usually we don't have comments in public headers but this is not the biggest issue with tgmath.h) casting the result to the right type cannot be done in c99 (c11 _Generic can solve this but that is not widely supported), so the typeof extension of gcc is used and that the ?: operator has special semantics when one of the operands is a null pointer constant the standard is very strict about the definition of null pointer constants so typeof with ?: is still not enough so compiler specific workaround is used for now on gcc '!1.0' is a null pointer constant so we can use the old __IS_FP logic (eventhough it's non-standard) on clang (and on gcc as well) 'sizeof(void)-1' is a null pointer constant so we can use !(sizeof(*(0?(int*)0:(void*)__IS_FP(x)))-1) (this is non-standard as well), the old logic is used by default and this new one on clang
-
- 15 12月, 2012 1 次提交
-
-
由 Rich Felker 提交于
these are not specified in the standard, but in the reserved namespace, so there is no problem with defining them unconditionally.
-
- 14 12月, 2012 2 次提交
-
-
由 Szabolcs Nagy 提交于
in tgmath.h the return values are casted to the appropriate floating-point type (if the compiler supports gcc __typeof__), this is wrong in case of ilogb, lrint, llrint, lround, llround which do not need such cast
-
由 Rich Felker 提交于
-
- 12 12月, 2012 2 次提交
-
-
由 Szabolcs Nagy 提交于
j0l,j1l,jnl,y0l,j1l,jnl are gnu extensions, bsd and posix do not have them. noone seems to use them and there is no plan to implement them any time soon so we shouldn't declare them in math.h.
-
由 Szabolcs Nagy 提交于
-
- 11 12月, 2012 2 次提交
-
-
由 Rich Felker 提交于
despite glibc using __key and __seq rather than key and seq, some applications, notably busybox, assume the names are key and seq unless glibc is being used. and the names key and seq are really the ones that _should_ be exposed when not attempting to present a standards-conforming namespace; apps should not be using names that begin with double-underscore. thus, the optimal fix is to use key and seq as the actual names of the members when in bsd/gnu source profile, and define macros for __key and __seq that redirect to plain key and seq.
-
由 Rich Felker 提交于
traditionally, both BSD and GNU systems have it this way. sys/syscall.h is purely syscall number macros. presently glibc exposes the syscall declaration in unistd.h only with _GNU_SOURCE, but that does not reflect historical practice.
-
- 07 12月, 2012 11 次提交
-
-
由 Rich Felker 提交于
previously the names were exposed as key/seq with _GNU_SOURCE and __ipc_perm_key/__ipc_perm/seq otherwise, whereas glibc always uses __key and __seq for the names. thus, the old behavior never matched glibc, and the new behavior always does, regardless of feature test macros. for now, i'm leaving the renaming here in sys/ipc.h where it's easy to change globally for all archs, in case something turns out to be wrong, but eventually the names could just be incorporated directly into the bits headers for each arch and the renaming removed.
-
由 rofl0r 提交于
-
由 rofl0r 提交于
-
由 rofl0r 提交于
-
由 rofl0r 提交于
-
由 rofl0r 提交于
-
由 rofl0r 提交于
the prototype is defined with const gid_t* rather than const gid_t[]. it was already correctly defined in grp.h.
-
由 rofl0r 提交于
the macro was the wrong way round, additionally GNU defines __ prefixed versions, which are used by qemu.
-
由 rofl0r 提交于
this function is obsolete, however it's available as a syscall and as such qemu userspace emulation tries to forward it to the host kernel.
-
由 rofl0r 提交于
thankfully these are all generic across archs. the DN_ macros are for usage with F_NOTIFY.
-
由 rofl0r 提交于
-
- 06 12月, 2012 2 次提交
-
-
由 Rich Felker 提交于
previously, everything was going through an intermediate conversion to long double, which caused the extern __fpclassifyl function to get invoked, preventing virtually all optimizations of these operations. with the new code, tests on constant float or double arguments compile to a constant 0 or 1, and tests on non-constant expressions are efficient. I may later add support for __builtin versions on compilers that support them.
-
由 Rich Felker 提交于
due to some historical oddity, these are considered libc headers rather than kernel headers. the kernel used to provide them too, but it seems modern kernels do not install them, so let's just do the easiest thing and provide them. stripped-down versions provided by John Spencer.
-
- 05 12月, 2012 1 次提交
-
-
由 Rich Felker 提交于
apparently recent gcc versions have intentionally broken the traditional definition by treating it as a non-constant expression. the traditional definition may also be problematic for c++ programs.
-
- 04 12月, 2012 2 次提交
-
-
由 Rich Felker 提交于
reportedly this is a semi-common practice among some BSDs and a few other systems, and will improve application compatibility.
-
由 Rich Felker 提交于
previously, a few BSD features were enabled only by _BSD_SOURCE, not by _GNU_SOURCE. since _BSD_SOURCE is default in the absence of other feature test macros, this made adding _GNU_SOURCE to a project not a purely additive feature test macro; it actually caused some features to be suppressed. most of the changes made by this patch actually bring musl in closer alignment with the glibc behavior for _GNU_SOURCE. the only exceptions are the added visibility of functions like strlcpy which were BSD-only due to being disliked/rejected by glibc maintainers. here, I feel the consistency of having _GNU_SOURCE mean "everything", and especially the property of it being purely additive, are more valuable than hiding functions which glibc does not have.
-
- 03 12月, 2012 1 次提交
-
-
由 Rich Felker 提交于
most importantly, the format/scan macros for the [u]int_fast16_t and [u]int_fast32_t types were defined incorrectly assuming these types would match the native word/pointer size. this is incorrect on any 64-bit system; the "fast" types for 16- and 32-bit integers are simply int. another issue which was "only a warning" (despite being UB) is that the choice of "l" versus "ll" was incorrect for 64-bit types on 64-bit machines. while it would "work" to always use "long long" for 64-bit types, we use "long" on 64-bit machines to match what glibc does and what the ABI documents recommend. the macro definitions were probably right in very old versions of musl, but became wrong when we aligned most closely with the 'standard' ABI. checking UINTPTR_MAX is an easy way to get the system wordsize without pulling in new headers. finally, the useless __PRIPTR macro to allow the underlying type of [u]intptr_t to vary has been removed. we are using "long" on all targets, and thankfully this matches what glibc does, so I do not envision ever needing to change it. thus, the "l" has just been incorporated directly in the strings.
-
- 01 12月, 2012 1 次提交
-
-
由 Rich Felker 提交于
this fixes a regression related to the changes made to bits/signal.h between 0.9.7 and 0.9.8 that broke some (non-portable) software.
-
- 27 11月, 2012 3 次提交
-
-
由 Rich Felker 提交于
these should have little/no practical impact but they're needed for strict conformance.
-
由 Rich Felker 提交于
-
由 Rich Felker 提交于
the missing check did not affect the default profile, since it has both _XOPEN_SOURCE and _BSD_SOURCE defined, but it did break programs which explicitly define _BSD_SOURCE, causing it to be the only feature test macro present.
-
- 26 11月, 2012 2 次提交
-
-
由 Rich Felker 提交于
-
由 Rich Felker 提交于
these structures are purely for use by trace/debug tools and tools working with core files. the definition of fpregset_t, which was previously here, has been removed because it was wrong; fpregset_t should be the type used in mcontext_t, not the type used in ptrace/core stuff.
-