about summary refs log tree commit diff
path: root/src
Commit message (Expand)AuthorAgeFilesLines
* fix alignment logic in strlcpyRich Felker2012-12-261-1/+1
* fix reference to libc struct in static tls init codeRich Felker2012-12-251-1/+1
* clean up and fix logic for making mmap fail on invalid/unsupported offsetsRich Felker2012-12-201-3/+7
* merge a few fixes by sh4rm4Rich Felker2012-12-191-0/+11
|\
| * add inet_network (required for wine)rofl0r2012-12-191-0/+11
* | math: use 0x1p-120f and 0x1p120f for tiny and huge valuesSzabolcs Nagy2012-12-1610-27/+27
* | math: tgammal.c fixesSzabolcs Nagy2012-12-161-28/+23
* | math: tanh.c cleanup similar to sinh, coshSzabolcs Nagy2012-12-163-173/+83
* | math: sinh.c cleanup similar to the cosh oneSzabolcs Nagy2012-12-163-171/+72
* | math: finished cosh.c cleanupSzabolcs Nagy2012-12-163-142/+49
|/
* math: x86_64 version of expl, fixed some comments in the i386 versionSzabolcs Nagy2012-12-164-4/+112
* math: move x86_64 exp2l implementation to exp2l.s from expl.sSzabolcs Nagy2012-12-163-85/+76
* fix breakage in ldd (failure to print library load address)Rich Felker2012-12-151-2/+2
* math: fix i386/expl.s with more precise x*log2eSzabolcs Nagy2012-12-142-7/+107
* math: add a non-dummy tgamma implementationSzabolcs Nagy2012-12-122-20/+215
* math: cosh cleanupSzabolcs Nagy2012-12-123-70/+63
* math: fix comment in __rem_pio2f.cSzabolcs Nagy2012-12-121-2/+2
* math: add empty __invtrigl.s to i386 and x86_64Szabolcs Nagy2012-12-122-0/+0
* math: clean up inverse trigonometric functionsSzabolcs Nagy2012-12-1112-377/+258
* math: rewrite inverse hyperbolic functions to be simpler/smallerSzabolcs Nagy2012-12-119-406/+149
* make CMPLX macros available in complex.h in non-c11 mode as wellSzabolcs Nagy2012-12-111-8/+0
* fix double errno-decoding in the old-kernel fallback path of pipe2Rich Felker2012-12-111-1/+1
* document self-synchronized destruction issue for stdio lockingRich Felker2012-12-101-0/+10
* page-align initial brk value used by malloc in shared libcRich Felker2012-12-071-1/+5
* remove __arch_prctl alias for arch_prctlRich Felker2012-12-071-3/+1
* move new linux syscall wrapper functions to proper source dirRich Felker2012-12-072-0/+0
* fix trailing whitespace issues that crept in here and thereRich Felker2012-12-074-4/+4
* fix invalid read in aligned_allocRich Felker2012-12-061-2/+3
* fix sigorset/sigandset: _NSIG/8 is the size in bytesrofl0r2012-12-062-2/+2
* sigandset/sigorset: do not check for NULL pointers.rofl0r2012-12-062-10/+0
* fixup sigandsetrofl0r2012-12-062-2/+2
* add arch_prctl syscall (amd64/x32 only)rofl0r2012-12-061-0/+9
* add personality syscallrofl0r2012-12-061-0/+7
* add sigandset and sigorset (needed for qemu)rofl0r2012-12-062-0/+34
* add obsolete futimesat()rofl0r2012-12-061-0/+9
* remove fenv saving/loading code from setjmp/longjmp on armRich Felker2012-12-052-4/+0
* remove mips setjmp/longjmp code to save/restore fenvRich Felker2012-12-052-5/+1
* use alternate argument syntax for restrict with lio_listioRich Felker2012-12-041-1/+1
* fix ordering of shared library ctors with respect to libc initRich Felker2012-11-302-3/+11
* fix some restrict-qualifier mismatches in newly added interfacesRich Felker2012-11-271-2/+2
* eliminate gdb complaints about missing linux-gate.so.1Rich Felker2012-11-251-1/+2
* fix powerpc sigsetjmp asm to match the new jmp_buf size/offsetsRich Felker2012-11-231-2/+2
* fix powerpc setjmp/longjmp to save/restore float regs; enlarge/align jmp_bufRich Felker2012-11-232-0/+36
* powerpc: handle syscall error in clone.rofl0r2012-11-192-39/+24
* fix powerpc asm not to store data in volatile space below stack pointerRich Felker2012-11-182-12/+12
* add port io functions to sys/io.hRich Felker2012-11-182-2/+4
* fenv support for ppc, untestedRich Felker2012-11-181-0/+120
* fix feholdexcept -- it needs to clear exceptions after saving environmentRich Felker2012-11-181-0/+1
* Merge remote-tracking branch 'nsz/math'Rich Felker2012-11-187-237/+171
|\
| * math: use float constants in exp10f.cSzabolcs Nagy2012-11-181-1/+1