musl
11 years agoadd personality syscall
rofl0r [Thu, 6 Dec 2012 20:01:06 +0000 (21:01 +0100)]
add personality syscall

11 years agoadd sigandset and sigorset (needed for qemu)
rofl0r [Thu, 6 Dec 2012 19:51:32 +0000 (20:51 +0100)]
add sigandset and sigorset (needed for qemu)

11 years agoadd struct msgbuf to sys/msg.h
rofl0r [Thu, 6 Dec 2012 19:03:04 +0000 (20:03 +0100)]
add struct msgbuf to sys/msg.h

11 years agounistd.h: fix wrong type for gid_t argument
rofl0r [Thu, 6 Dec 2012 18:48:14 +0000 (19:48 +0100)]
unistd.h: fix wrong type for gid_t argument

the prototype is defined with const gid_t* rather than const gid_t[].
it was already correctly defined in grp.h.

11 years agoipc.h: fix gnu aliases for key and seq in struct ipc_perm
rofl0r [Thu, 6 Dec 2012 18:39:52 +0000 (19:39 +0100)]
ipc.h: fix gnu aliases for key and seq in struct ipc_perm

the macro was the wrong way round, additionally GNU defines
__ prefixed versions, which are used by qemu.

11 years agoadd obsolete futimesat()
rofl0r [Thu, 6 Dec 2012 18:29:38 +0000 (19:29 +0100)]
add obsolete futimesat()

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.

11 years agobits/signal.h: add register names for x86(_64)
rofl0r [Thu, 6 Dec 2012 17:14:45 +0000 (18:14 +0100)]
bits/signal.h: add register names for x86(_64)

glibc exposes them from ucontext.h.
since that header includes signal.h, it is safe to put them
into bits/signal.h, if _GNU_SOURCE is defined.

11 years agofcntl.h: add some linux-specific F_ macros
rofl0r [Thu, 6 Dec 2012 16:48:11 +0000 (17:48 +0100)]
fcntl.h: add some linux-specific F_ macros

thankfully these are all generic across archs.
the DN_ macros are for usage with F_NOTIFY.

11 years agotcp.h: add SOL_TCP, analoguous to udp.h
rofl0r [Thu, 6 Dec 2012 16:02:19 +0000 (17:02 +0100)]
tcp.h: add SOL_TCP, analoguous to udp.h

11 years agoadd more arch-specific MAP_ macros to bits/mman.h
rofl0r [Thu, 6 Dec 2012 15:57:22 +0000 (16:57 +0100)]
add more arch-specific MAP_ macros to bits/mman.h

these are also needed by qemu.

11 years agoremove MAP_32 from non-x86 archs
rofl0r [Thu, 6 Dec 2012 00:24:03 +0000 (01:24 +0100)]
remove MAP_32 from non-x86 archs

both kernel and glibc define it only on x86(_64).

11 years agoadd MAP_NORESERVE to bits/mman.h
rofl0r [Thu, 6 Dec 2012 00:20:48 +0000 (01:20 +0100)]
add MAP_NORESERVE to bits/mman.h

this is needed for qemu, and since it differs for each arch
it can't be circumvented easily by using a macro in CFLAGS.

11 years agoremove fenv saving/loading code from setjmp/longjmp on arm
Rich Felker [Thu, 6 Dec 2012 00:13:47 +0000 (19:13 -0500)]
remove fenv saving/loading code from setjmp/longjmp on arm

the issue is identical to the recent commit fixing the mips versions:
despite other implementations doing this, it conflicts with the
requirements of ISO C and it's a waste of time and code size.

11 years agofix inefficiency of math.h isless, etc. macros
Rich Felker [Wed, 5 Dec 2012 19:12:57 +0000 (14:12 -0500)]
fix inefficiency of math.h isless, etc. macros

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.

11 years agoremove mips setjmp/longjmp code to save/restore fenv
Rich Felker [Wed, 5 Dec 2012 17:52:40 +0000 (12:52 -0500)]
remove mips setjmp/longjmp code to save/restore fenv

nothing in the standard requires or even allows the fenv state to be
restored by longjmp. restoring the exception flags is not such a big
deal since it's probably valid to clobber them completely, but
restoring the rounding mode yields an observable side effect not
sanctioned by ISO C. saving/restoring it also wastes a few cycles and
16 bytes of code.

as for historical behavior, reportedly SGI IRIX did save/restore fenv,
and this is where glibc and uClibc got the behavior from. a few other
systems save/restore it too (on archs other than mips), even though
this is apparently wrong. further details are documented here:

http://www-personal.umich.edu/~williams/archive/computation/setjmp-fpmode.html

as musl aims for standards conformance rather than coddling historical
programs expecting non-conforming behavior, and as it's unlikely that
any historical programs actually depend on the incorrect behavior
(such programs would break on other archs, anyway), I'm making the
change not to save/restore fenv on mips.

11 years agoadd scsi headers scsi.h and sg.h
Rich Felker [Wed, 5 Dec 2012 17:35:24 +0000 (12:35 -0500)]
add scsi headers scsi.h and sg.h

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.

11 years agouse __builtin_offsetof to implement offsetof when possible
Rich Felker [Wed, 5 Dec 2012 05:00:42 +0000 (00:00 -0500)]
use __builtin_offsetof to implement offsetof when possible

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.

11 years agouse alternate argument syntax for restrict with lio_listio
Rich Felker [Wed, 5 Dec 2012 00:03:42 +0000 (19:03 -0500)]
use alternate argument syntax for restrict with lio_listio

for some reason I have not been able to determine, gcc 3.2 rejects the
array notation. this seems to be a gcc bug, but since it's easy to
work around, let's do the workaround and avoid gratuitously requiring
newer compilers.

11 years agofix regression in arm user.h that happened during big user.h changes
Rich Felker [Tue, 4 Dec 2012 14:32:45 +0000 (09:32 -0500)]
fix regression in arm user.h that happened during big user.h changes

11 years agoadd _ALL_SOURCE as an alias for _GNU_SOURCE/enable-everything
Rich Felker [Mon, 3 Dec 2012 22:02:56 +0000 (17:02 -0500)]
add _ALL_SOURCE as an alias for _GNU_SOURCE/enable-everything

reportedly this is a semi-common practice among some BSDs and a few
other systems, and will improve application compatibility.

11 years agofeature test macros: make _GNU_SOURCE enable everything
Rich Felker [Mon, 3 Dec 2012 21:57:01 +0000 (16:57 -0500)]
feature test macros: make _GNU_SOURCE enable everything

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.

11 years agofix a couple issues in the inttypes.h PRI/SCN macros
Rich Felker [Sun, 2 Dec 2012 20:18:05 +0000 (15:18 -0500)]
fix a couple issues in the inttypes.h PRI/SCN macros

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.

11 years agoprovide NSIG under _BSD_SOURCE (default) as well as _GNU_SOURCE
Rich Felker [Sat, 1 Dec 2012 02:00:18 +0000 (21:00 -0500)]
provide NSIG under _BSD_SOURCE (default) as well as _GNU_SOURCE

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.

11 years agofix ordering of shared library ctors with respect to libc init
Rich Felker [Fri, 30 Nov 2012 22:56:23 +0000 (17:56 -0500)]
fix ordering of shared library ctors with respect to libc init

previously, shared library constructors were being called before
important internal things like the environment (extern char **environ)
and hwcap flags (needed for sjlj to work right with float on arm) were
initialized in __libc_start_main. rather than trying to have to
dynamic linker make sure this stuff all gets initialized right, I've
opted to just defer calling shared library constructors until after
the main program's entry point is reached. this also fixes the order
of ctors to be the exact reverse of dtors, which is a desirable
property and possibly even mandated by some languages.

the main practical effect of this change is that shared libraries
calling getenv from ctors will no longer fail.

11 years agofix some restrict-qualifier mismatches in newly added interfaces
Rich Felker [Tue, 27 Nov 2012 14:44:30 +0000 (09:44 -0500)]
fix some restrict-qualifier mismatches in newly added interfaces

these should have little/no practical impact but they're needed for
strict conformance.

11 years agoupdate readme and release notes for 0.9.8
Rich Felker [Tue, 27 Nov 2012 02:01:30 +0000 (21:01 -0500)]
update readme and release notes for 0.9.8

11 years agoremove stat member aliases from ppc-specific bits/stat.h
Rich Felker [Tue, 27 Nov 2012 01:42:20 +0000 (20:42 -0500)]
remove stat member aliases from ppc-specific bits/stat.h

if these are to be supported, they belong in the main stat.h, not
repeated for each arch.

11 years agofix eventfd and inotify nonblock/cloexec flags to match arch values
Rich Felker [Mon, 26 Nov 2012 18:00:58 +0000 (13:00 -0500)]
fix eventfd and inotify nonblock/cloexec flags to match arch values

11 years agofix missing limits when only _BSD_SOURCE is defined
Rich Felker [Mon, 26 Nov 2012 17:05:33 +0000 (12:05 -0500)]
fix missing limits when only _BSD_SOURCE is defined

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.

11 years agofixup mcontext stuff to expost gregset_t/fpregset_t as appropriate
Rich Felker [Mon, 26 Nov 2012 04:04:23 +0000 (23:04 -0500)]
fixup mcontext stuff to expost gregset_t/fpregset_t as appropriate

11 years agomake sys/procfs.h mostly work on most archs
Rich Felker [Mon, 26 Nov 2012 03:28:18 +0000 (22:28 -0500)]
make sys/procfs.h mostly work on most archs

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.

11 years agoremove microblaze user.h incorrectly copied from arm
Rich Felker [Mon, 26 Nov 2012 02:12:34 +0000 (21:12 -0500)]
remove microblaze user.h incorrectly copied from arm

11 years agoeliminate gdb complaints about missing linux-gate.so.1
Rich Felker [Mon, 26 Nov 2012 01:56:31 +0000 (20:56 -0500)]
eliminate gdb complaints about missing linux-gate.so.1

actually, the hard-coded name should be eliminated too, and replaced
by a search for the soname in the headers, but that can be done
separately later.

11 years agobegin sys/user.h and sys/reg.h fixes for ports
Rich Felker [Sat, 24 Nov 2012 01:05:43 +0000 (20:05 -0500)]
begin sys/user.h and sys/reg.h fixes for ports

aside from microblaze, these should be roughly correct for all archs
now. some misc junk macros and typedefs are missing, which should
probably be added for max compatibility with trace/debug tools.

11 years agofix powerpc ucontext, again..
Rich Felker [Sat, 24 Nov 2012 00:54:56 +0000 (19:54 -0500)]
fix powerpc ucontext, again..

it should now really match the kernel. some of the removed padding
corresponded to the difference between user and kernel sigset_t. the
space at the end was redundant with the uc_mcontext member and seems
to have been added as a result of misunderstanding glibc's definition
versus the kernel's.

11 years agofix termios constants on mips
Rich Felker [Fri, 23 Nov 2012 22:23:38 +0000 (17:23 -0500)]
fix termios constants on mips

11 years agosigcontext/mcontext cleanup for arch-specific bits
Rich Felker [Fri, 23 Nov 2012 19:35:25 +0000 (14:35 -0500)]
sigcontext/mcontext cleanup for arch-specific bits

with these changes, the members/types of mcontext_t and related stuff
should closely match the glibc definitions. unlike glibc, however, the
definitions here avoid using typedefs as much as possible and work
directly with the underlying types, to minimize namespace pollution
from signal.h in the default (_BSD_SOURCE) profile.

this is a first step in improving compatibility with applications
which poke at context/register information -- mainly debuggers, trace
utilities, etc. additional definitions in ucontext.h and other headers
may be needed later.

if feature test macros are used to request a conforming namespace,
mcontext_t is replaced with an opaque structure of the equivalent size
and alignment; conforming programs cannot examine its contents anyway.

11 years agofix powerpc sigsetjmp asm to match the new jmp_buf size/offsets
Rich Felker [Fri, 23 Nov 2012 19:34:59 +0000 (14:34 -0500)]
fix powerpc sigsetjmp asm to match the new jmp_buf size/offsets

11 years agofix powerpc setjmp/longjmp to save/restore float regs; enlarge/align jmp_buf
Rich Felker [Fri, 23 Nov 2012 19:30:58 +0000 (14:30 -0500)]
fix powerpc setjmp/longjmp to save/restore float regs; enlarge/align jmp_buf

11 years agoadd missing startfiles for powerpc
Rich Felker [Fri, 23 Nov 2012 18:31:16 +0000 (13:31 -0500)]
add missing startfiles for powerpc

11 years agofix up leftover, incorrect NSIG definitions in arch-specific signal.h
Rich Felker [Fri, 23 Nov 2012 17:20:53 +0000 (12:20 -0500)]
fix up leftover, incorrect NSIG definitions in arch-specific signal.h

11 years agoremove stuff that doesn't belong in powerpc 32-bit sigcontext
Rich Felker [Fri, 23 Nov 2012 16:27:25 +0000 (11:27 -0500)]
remove stuff that doesn't belong in powerpc 32-bit sigcontext

these fields were wrongly copied from the kernel's ppc64 struct def

11 years agomore ppc signal.h typedef order fixes
Rich Felker [Wed, 21 Nov 2012 18:51:14 +0000 (13:51 -0500)]
more ppc signal.h typedef order fixes

11 years agofix misordered typedefs in ppc signal.h
Rich Felker [Wed, 21 Nov 2012 18:50:40 +0000 (13:50 -0500)]
fix misordered typedefs in ppc signal.h

11 years agoppc signal/NSIG related fix (warning fix, redefinition)
Rich Felker [Wed, 21 Nov 2012 18:49:31 +0000 (13:49 -0500)]
ppc signal/NSIG related fix (warning fix, redefinition)

11 years agoadd back NSIG, removed from powerpc in last commit, but for all archs
Rich Felker [Wed, 21 Nov 2012 18:41:58 +0000 (13:41 -0500)]
add back NSIG, removed from powerpc in last commit, but for all archs

unlike the previous definition, NSIG/_NSIG is supposed to be one more
than the highest signal number. adding this will allow simplifying
libc-internal code that makes signal-related syscalls, which can be
done as a later step. some apps might use it too; while this usage is
questionable, it's at least not insane.

11 years agomake powerpc signal.h namespace-clean for posix/isoc
Rich Felker [Wed, 21 Nov 2012 18:36:01 +0000 (13:36 -0500)]
make powerpc signal.h namespace-clean for posix/isoc

also handle the non-GNUC case where alignment attribute is not available
by simply omitting it. this will not cause problems except for
inclusion of mcontex_t/ucontext_t in application-defined structures,
since the natural alignment of the uc_mcontext member relative to the
start of ucontext_t is already correct. and shame on whoever designed
this for making it impossible to satisfy the ABI requirements without
GNUC extensions.

11 years agofix powerpc types to match abi, and some feature test issues
Rich Felker [Wed, 21 Nov 2012 18:29:50 +0000 (13:29 -0500)]
fix powerpc types to match abi, and some feature test issues

11 years agofix invalid usage of mcontext_t in powerpc signal.h
rofl0r [Wed, 21 Nov 2012 05:24:05 +0000 (06:24 +0100)]
fix invalid usage of mcontext_t in powerpc signal.h

11 years agopowerpc: handle syscall error in clone.
rofl0r [Mon, 19 Nov 2012 05:21:48 +0000 (06:21 +0100)]
powerpc: handle syscall error in clone.

sigsetjmp: store temporaries in jmp_buf rather than on stack.

11 years agofix error in configure script using >/dev/null in noclobber mode
Rich Felker [Mon, 19 Nov 2012 04:15:47 +0000 (23:15 -0500)]
fix error in configure script using >/dev/null in noclobber mode

11 years agofix powerpc asm not to store data in volatile space below stack pointer
Rich Felker [Mon, 19 Nov 2012 03:57:32 +0000 (22:57 -0500)]
fix powerpc asm not to store data in volatile space below stack pointer

it's essential to decrement the stack pointer before writing to new
stack space, rather than afterwards. otherwise there is a race
condition during which asynchronous code (signals) could clobber the
data being stored.

it may be possible to optimize the code further using stwu, but I
wanted to avoid making any changes to the actual stack layout in this
commit. further improvements can be made separately if desired.

11 years agofix breakage from introducing bits header for sys/io.h
Rich Felker [Mon, 19 Nov 2012 00:58:15 +0000 (19:58 -0500)]
fix breakage from introducing bits header for sys/io.h

apparently some other archs have sys/io.h and should not break just
because they don't have the x86 port io functions. provide a blank
bits/io.h everywhere for now.

11 years agoadd port io functions to sys/io.h
Rich Felker [Mon, 19 Nov 2012 00:31:58 +0000 (19:31 -0500)]
add port io functions to sys/io.h

based on proposal by Isaac Dunham. nonexistance of bits/io.h will
cause inclusion of sys/io.h to produce an error on archs that are not
supposed to have it. this is probably the desired behavior, but the
error message may be a bit unusual.

11 years agoadd missing const on powerpc FE_DFL_ENV
Rich Felker [Sun, 18 Nov 2012 21:58:05 +0000 (16:58 -0500)]
add missing const on powerpc FE_DFL_ENV

11 years agofenv support for ppc, untested
Rich Felker [Sun, 18 Nov 2012 21:31:14 +0000 (16:31 -0500)]
fenv support for ppc, untested

based on code sent to the mailing list by nsz, with minor changes.

11 years agofix feholdexcept -- it needs to clear exceptions after saving environment
Rich Felker [Sun, 18 Nov 2012 21:10:20 +0000 (16:10 -0500)]
fix feholdexcept -- it needs to clear exceptions after saving environment

11 years agoMerge remote-tracking branch 'nsz/math'
Rich Felker [Sun, 18 Nov 2012 20:19:35 +0000 (15:19 -0500)]
Merge remote-tracking branch 'nsz/math'

11 years agofcntl.h: O_SEARCH was missing for powerpc
rofl0r [Sun, 18 Nov 2012 04:14:40 +0000 (05:14 +0100)]
fcntl.h: O_SEARCH was missing for powerpc

put some macros that do not differ between architectures in the
main header and remove from bits.
restructure mips header so it has the same structure as the others.

11 years agomath: use float constants in exp10f.c
Szabolcs Nagy [Sun, 18 Nov 2012 02:52:29 +0000 (03:52 +0100)]
math: use float constants in exp10f.c

use the 'f' suffix when a float constant is not representable

11 years agomath: expl.c cleanup
Szabolcs Nagy [Sun, 18 Nov 2012 02:49:16 +0000 (03:49 +0100)]
math: expl.c cleanup

raise overflow and underflow when necessary, fix various comments.

11 years agomath: expf.c cleanup
Szabolcs Nagy [Sun, 18 Nov 2012 02:42:09 +0000 (03:42 +0100)]
math: expf.c cleanup

similar to exp.c cleanup: use scalbnf, don't return excess precision,
drop some optimizatoins.
exp.c was changed to be more consistent with expf.c code.

11 years agoppc socket.h: add forgotten cmsghdr
rofl0r [Sun, 18 Nov 2012 01:38:41 +0000 (02:38 +0100)]
ppc socket.h: add forgotten cmsghdr

11 years agofix typo in dynamic linker path file loading code
Rich Felker [Sun, 18 Nov 2012 01:04:36 +0000 (20:04 -0500)]
fix typo in dynamic linker path file loading code

fortunately the memory corruption could not hurt anything, but it
prevented clearing the final newline and thus prevented the last path
element from working.

11 years agoadd cleaned-up sys/mtio.h
Rich Felker [Sun, 18 Nov 2012 00:51:49 +0000 (19:51 -0500)]
add cleaned-up sys/mtio.h

this is mostly junk, but a few programs with tape-drive support
unconditionally include it, and it might be useful.

11 years agoadd stub versions of some missing optional pthread interfaces
Rich Felker [Sat, 17 Nov 2012 23:42:16 +0000 (18:42 -0500)]
add stub versions of some missing optional pthread interfaces

priority inheritance is not yet supported, and priority protection
probably will not be supported ever unless there's serious demand for
it (it's a fairly heavy-weight feature).

per-thread cpu clocks would be nice to have, but to my knowledge linux
is still not capable of supporting them. glibc fakes them by using the
_process_ cpu-time clock and subtracting the thread creation time,
which gives seriously incorrect semantics (worse than not supporting
the feature at all), so until there's a way to do it right, it will
remain as a stub that always fails.

11 years agomath: cleanup exp2.c exp2f.c and exp2l.c
Szabolcs Nagy [Sat, 17 Nov 2012 22:39:39 +0000 (23:39 +0100)]
math: cleanup exp2.c exp2f.c and exp2l.c

* old code relied on sign extension on right shift
* exp2l ld64 wrapper was wrong
* use scalbn instead of bithacks

11 years agoarg-skipping code for powerpc dynamic linker
Rich Felker [Sat, 17 Nov 2012 22:25:17 +0000 (17:25 -0500)]
arg-skipping code for powerpc dynamic linker

this allows using the dynamic linker as a command to load programs.

11 years agomath: exp.c clean up
Szabolcs Nagy [Sat, 17 Nov 2012 22:22:41 +0000 (23:22 +0100)]
math: exp.c clean up

overflow and underflow was incorrect when the result was not stored.
an optimization for the 0.5*ln2 < |x| < 1.5*ln2 domain was removed.
did various cleanups around static constants and made the comments
consistent with the code.

11 years agodynamic linking support for powerpc
Rich Felker [Sat, 17 Nov 2012 03:22:34 +0000 (22:22 -0500)]
dynamic linking support for powerpc

incomplete but at least partly working. requires all files to be
compiled in the new "secure" plt model, not the old one that put plt
code in the data segment. TLS is untested but may work. invoking the
dynamic linker explicitly to load a program does not yet handle argv
correctly.

11 years agofix ppc stat structure definition
Rich Felker [Fri, 16 Nov 2012 06:19:42 +0000 (01:19 -0500)]
fix ppc stat structure definition

11 years agofix powerpc termios.h and ioctl.h
rofl0r [Fri, 16 Nov 2012 01:17:02 +0000 (02:17 +0100)]
fix powerpc termios.h and ioctl.h

11 years agodisable SO_REUSEPORT in sys/socket.h
Rich Felker [Fri, 16 Nov 2012 00:16:10 +0000 (19:16 -0500)]
disable SO_REUSEPORT in sys/socket.h

although a number is reserved for it, this option is not implemented
on Linux and does not work. defining it causes some applications to
use it, and subsequently break due to its failure.

11 years agoppc wchar_t is long, not int
Rich Felker [Thu, 15 Nov 2012 21:01:54 +0000 (16:01 -0500)]
ppc wchar_t is long, not int

11 years agoMerge remote-tracking branch 'nsz/math'
Rich Felker [Thu, 15 Nov 2012 13:37:58 +0000 (08:37 -0500)]
Merge remote-tracking branch 'nsz/math'

11 years agoupdate copyright file for recent contributions
Rich Felker [Thu, 15 Nov 2012 01:24:46 +0000 (20:24 -0500)]
update copyright file for recent contributions

11 years agofix indention with spaces in powerpc asm
Rich Felker [Wed, 14 Nov 2012 19:27:51 +0000 (14:27 -0500)]
fix indention with spaces in powerpc asm

11 years agofix powerpc atomic compare-and-swap function
Rich Felker [Wed, 14 Nov 2012 19:24:22 +0000 (14:24 -0500)]
fix powerpc atomic compare-and-swap function

previous version did not compare at all; it was just a fancy atomic
write. untested. further atomic fixes may be needed.

11 years agoupdate ppc atomic code to match the endian-agnostic version on other archs
Rich Felker [Wed, 14 Nov 2012 19:08:33 +0000 (14:08 -0500)]
update ppc atomic code to match the endian-agnostic version on other archs

11 years agofix wchar limits mistakenly copied from arm
Rich Felker [Wed, 14 Nov 2012 19:04:10 +0000 (14:04 -0500)]
fix wchar limits mistakenly copied from arm

11 years agoMerge remote-tracking branch 'ppc-port/ppc-squashed'
Rich Felker [Wed, 14 Nov 2012 19:01:39 +0000 (14:01 -0500)]
Merge remote-tracking branch 'ppc-port/ppc-squashed'

11 years agofenv: return FE_TONEAREST in dummy fegetround
Szabolcs Nagy [Wed, 14 Nov 2012 08:27:54 +0000 (09:27 +0100)]
fenv: return FE_TONEAREST in dummy fegetround

11 years agomath: ld80 invtrig cleanups
Szabolcs Nagy [Wed, 14 Nov 2012 00:01:38 +0000 (01:01 +0100)]
math: ld80 invtrig cleanups
keeping only commonly used data in invtrigl

11 years agomath: simplify hypot and hypotf using scalbn
Szabolcs Nagy [Tue, 13 Nov 2012 20:54:32 +0000 (21:54 +0100)]
math: simplify hypot and hypotf using scalbn

this also fixes overflow/underflow raising and excess
precision issues (as those are handled well in scalbn)

11 years agomath: turn off the STRICT_ASSIGN workaround by default
Szabolcs Nagy [Tue, 13 Nov 2012 18:59:02 +0000 (19:59 +0100)]
math: turn off the STRICT_ASSIGN workaround by default

the volatile hack in STRICT_ASSIGN is only needed if
assignment is not respected and excess precision is kept.
gcc -fexcess-precision=standard and -ffloat-store both
respect assignment and musl use these flags by default.
i kept the macro for now so the workaround may be used
for bad compilers in the future.

11 years agoPPC port cleaned up, static linking works well now.
rofl0r [Fri, 9 Nov 2012 22:36:55 +0000 (23:36 +0100)]
PPC port cleaned up, static linking works well now.

11 years agoimport preliminary ppc work by rdp.
Richard Pennington [Fri, 9 Nov 2012 22:32:57 +0000 (23:32 +0100)]
import preliminary ppc work by rdp.

11 years agomath: use '#pragma STDC FENV_ACCESS ON' when fenv is accessed
Szabolcs Nagy [Tue, 13 Nov 2012 12:34:45 +0000 (13:34 +0100)]
math: use '#pragma STDC FENV_ACCESS ON' when fenv is accessed

11 years agomath: excess precision fix modf, modff, scalbn, scalbnf
Szabolcs Nagy [Tue, 13 Nov 2012 09:55:35 +0000 (10:55 +0100)]
math: excess precision fix modf, modff, scalbn, scalbnf

old code was correct only if the result was stored (without the
excess precision) or musl was compiled with -ffloat-store.
now we use STRICT_ASSIGN to work around the issue.
(see note 160 in c11 section 6.8.6.4)

11 years agomath: fix scalbn and scalbnf on overflow/underflow
Szabolcs Nagy [Tue, 13 Nov 2012 09:30:40 +0000 (10:30 +0100)]
math: fix scalbn and scalbnf on overflow/underflow

old code was correct only if the result was stored (without the
excess precision) or musl was compiled with -ffloat-store.
(see note 160 in n1570.pdf section 6.8.6.4)

11 years agomath: fix nextafter and nexttoward on maxdbl and maxflt input
Szabolcs Nagy [Tue, 13 Nov 2012 09:12:07 +0000 (10:12 +0100)]
math: fix nextafter and nexttoward on maxdbl and maxflt input

old code (return x+x;) returns correct value and raises correct
flags only if the result is stored as double (or float)

11 years agocomplex: add C11 CMPLX macros and replace cpack with them
Szabolcs Nagy [Tue, 13 Nov 2012 00:31:49 +0000 (01:31 +0100)]
complex: add C11 CMPLX macros and replace cpack with them

11 years agomath: raise flags in logl.c on <= 0 arguments
Szabolcs Nagy [Mon, 12 Nov 2012 23:49:55 +0000 (00:49 +0100)]
math: raise flags in logl.c on <= 0 arguments

11 years agomath: fix logb*.c exceptions now that ilogb raises invalid
Szabolcs Nagy [Mon, 12 Nov 2012 23:45:51 +0000 (00:45 +0100)]
math: fix logb*.c exceptions now that ilogb raises invalid

11 years agomath: raise flags in log2l.c on <= 0 arguments, and fix volatile
Szabolcs Nagy [Mon, 12 Nov 2012 23:30:06 +0000 (00:30 +0100)]
math: raise flags in log2l.c on <= 0 arguments, and fix volatile

11 years agomath: raise exception flags in log1pl.c on <= -1 arguments
Szabolcs Nagy [Mon, 12 Nov 2012 23:21:09 +0000 (00:21 +0100)]
math: raise exception flags in log1pl.c on <= -1 arguments

11 years agomath: raise invalid flag in ilogb*.c on +-0, +-inf and nan
Szabolcs Nagy [Mon, 12 Nov 2012 22:58:18 +0000 (23:58 +0100)]
math: raise invalid flag in ilogb*.c on +-0, +-inf and nan

11 years agomath: fix exception behaviour of expm1l.c on inf and nan
Szabolcs Nagy [Mon, 12 Nov 2012 22:41:48 +0000 (23:41 +0100)]
math: fix exception behaviour of expm1l.c on inf and nan

11 years agomath: fix long double constants in exp10l.c
Szabolcs Nagy [Mon, 12 Nov 2012 22:13:28 +0000 (23:13 +0100)]
math: fix long double constants in exp10l.c

11 years agodebloat src/thread tree but putting lots of junk in one file
Rich Felker [Sun, 11 Nov 2012 21:08:38 +0000 (16:08 -0500)]
debloat src/thread tree but putting lots of junk in one file

POSIX includes mostly-useless attribute-get functions for each
attribute-set function, presumably out of some object-oriented
dogmatism. the get functions are not useful with the simple idiomatic
usage of attributes. there are of course possible valid uses of them
(like writing wrappers for pthread init functions that perform special
actions on the presence of certain attributes), but considering how
tiny these functions are anyway, little is lost by putting them all in
one file, and some build-time cost and archive-file-size benefits are
achieved.