about summary refs log tree commit diff
path: root/sysdeps
Commit message (Collapse)AuthorAgeFilesLines
* Remove unused sysdeps/unix/{,sysv/}getdents.c.Joseph Myers2012-04-243-74/+0
|
* Merge sysdeps/unix/mman into sysdeps/unix.Joseph Myers2012-04-244-18/+5
|
* Move sysdeps/unix/sysv/gethostname.c to sysdeps/posix/.Joseph Myers2012-04-231-0/+0
|
* Remove unused sysdeps/unix/execve.S.Joseph Myers2012-04-231-32/+0
|
* Remove unused sysdeps/unix/_exit.S.Joseph Myers2012-04-231-24/+0
|
* Remove last distribute variableAndreas Jaeger2012-04-211-2/+0
| | | | make dist support has been removed, remove the last remains of it.
* Merge sysdeps/unix/sysv/Versions into sysdeps/unix/sysv/linux/Versions.Joseph Myers2012-04-212-6/+1
|
* Update sysdeps/x86_64/fpu/libm-test-ulpsMarkus Trippelsdorf2012-04-211-0/+6
| | | | | [BZ #13927] * sysdeps/x86_64/fpu/libm-test-ulps: Update.
* Put vm86 into libc.aNix2012-04-211-1/+1
| | | | | | [BZ #7064] vm86 was not included in libc.a at all due to the default symbol explicitely added to the weak symbol.
* Remove unused sysdeps/unix/common/lxstat.c.Joseph Myers2012-04-202-39/+0
|
* Remove sysdeps/unix/sysv/Makefile.Joseph Myers2012-04-201-19/+0
|
* Remove unused sysdeps/unix/sysv/direct.h.Joseph Myers2012-04-201-10/+0
|
* Remove unused sysdeps/unix/sysv/bits/*.h.Joseph Myers2012-04-207-350/+0
|
* Remove unused sysdeps/unix/sysv/setrlimit.c.Joseph Myers2012-04-201-56/+0
|
* Remove unused sysdeps/unix/xmknod.c.Joseph Myers2012-04-202-42/+0
|
* Remove unused sysdeps/unix/sysv/settimeofday.c.Joseph Myers2012-04-201-47/+0
|
* Remove unused sysdeps/unix/sysv/i386/time.S.Joseph Myers2012-04-201-29/+0
|
* Remove unused sysdeps/unix/{xstat,fxstat}.c.Joseph Myers2012-04-203-79/+0
|
* Remove unused sysdeps/unix/sysv/sigaction.c.Joseph Myers2012-04-201-83/+0
|
* Remove unused sysdeps/unix/sysv termio code.Joseph Myers2012-04-2010-787/+1
|
* Remove unused sysdeps/unix/siglist.c.Joseph Myers2012-04-201-61/+0
|
* Remove unused sysdeps/unix/getppid.S.Joseph Myers2012-04-201-29/+0
|
* Remove unused sysdeps/unix/{mkdir.c,rmdir.c}.Joseph Myers2012-04-202-174/+0
|
* Fix computation of inflated errlist sizeAndreas Schwab2012-04-192-3/+3
|
* Remove all traces of reg_char.David S. Miller2012-04-181-3/+0
| | | | | | | | | | | | | | | | | | | * sysdeps/generic/memcopy.h (reg_char): Delete. * debug/strcat_chk.c: Use char, not reg_char. * debug/strcpy_chk.c: Likewise. * debug/strncat_chk.c: Likewise. * debug/strncpy_chk.c: Likewise. * string/memchr.c: Likewise. * string/memrchr.c: Likewise. * string/rawmemchr.c: Likewise. * string/strcat.c: Likewise. * string/strchr.c: Likewise. * string/strchrnul.c: Likewise. * string/strcmp.c: Likewise. * string/strcpy.c: Likewise. * string/strncat.c: Likewise. * string/strncmp.c: Likewise. * string/strncpy.c: Likewise.
* Have memmove call __builtin_memcopy on PowerPC if src and dest don't overlap.Will Schmidt2012-04-181-0/+119
|
* Further simplify power6 wordcopy by removing switch statements.Will Schmidt2012-04-182-72/+4
| | | | | | This fix replaces switch statements that contain individual [fwd|bwd]_align_merge (<constant>) calls with a single [fwd|bwd]_align_merge (align) call.
* Simplify power6 wordcopy by adding [fwd|bwd]_align_merge macros.Will Schmidt2012-04-182-272/+79
|
* Forgot to delete the sparc64 memcopy.h which tries to include the sparc32 oneDavid S. Miller2012-04-181-1/+0
| | | | * sysdeps/sparc/sparc64/memcopy.h: Delete.
* Finish ilogb changesAndreas Jaeger2012-04-185-13/+6
| | | | | | | | | | | | | | | | | | [BZ# 6794] * sysdeps/ieee754/ldbl-96/s_ilogbl.c: Moved to ... * sysdeps/ieee754/ldbl-96/e_ilogbl.c: ... here. Rename __ilogbl to __ieee754_ilogbl and remove weak_alias. * sysdeps/ieee754/ldbl-128/s_ilogbl.c: Moved to ... * sysdeps/ieee754/ldbl-128/e_ilogbl.c: ... here. Rename __ilogbl to __ieee754_ilogbl and remove weak_alias. * sysdeps/ieee754/ldbl-64-128/s_ilogbl.c: Moved to ... * sysdeps/ieee754/ldbl-64-128/e_ilogbl.c: ... here. * sysdeps/sparc/sparc64/soft-fp/s_ilogbl.c: Moved to ... * sysdeps/sparc/sparc64/soft-fp/e_ilogbl.c: ... here. Rename __ilogbl to __ieee754_ilogbl and remove weak_alias.
* There is no legitimate reason to override reg_char on sparc32.David S. Miller2012-04-171-20/+0
| | | | * sysdeps/sparc/sparc32/memcopy.h: Delete.
* Remove useless __ilogb*_finite aliasesAndreas Schwab2012-04-186-6/+0
|
* Fix ilogb exception and errno (bug 6794)Adhemerval Zanella2012-04-1710-23/+46
| | | | | | | | | | | | | | | | | | | | [BZ #6794] Following Joseph comments about bug 6794, here is a proposed fix. It turned out to be a large fix mainly because I had to move some file along to follow libm files/names conventions. Basically I have added wrappers (w_ilogb.c, w_ilogbf.c, w_ilogbl.c) that now calls the symbol '__ieee754_ilogb'. The wrappers checks for '__ieee754_ilogb' output and set the errno and raise exceptions as expected. The '__ieee754_ilogb' is implemented in sysdeps. I have moved the 's_ilogb[f|l]' files to e_ilogb[f|l] and renamed the '__ilogb[f|l]' to '__ieee754_ilogb[f|l]'. I also found out a bug in i386 and x86-64 assembly coded ilogb implementation where it raises a FE_DIVBYZERO when argument is '0.0'. I corrected this issue as well. Finally I added the errno and FE_INVALID tests for 0.0, NaN and +-InF argument. Tested on i386, x86-64, ppc32 and ppc64.
* Reverse arguments of fdivp in i386 code.Marek Polacek2012-04-161-2/+2
|
* Check __ILP32__ instead of __LP64__H.J. Lu2012-04-133-3/+3
| | | | | | | | | | | | | * elf/tst-auditmod1.c: Check __ILP32__ instead of __LP64__. * elf/tst-auditmod3b.c: Likewise. * elf/tst-auditmod4b.c: Likewise. * elf/tst-auditmod5b.c: Likewise. * elf/tst-auditmod6b.c: Likewise. * elf/tst-auditmod6c.c: Likewise. * elf/tst-auditmod7b.c: Likewise. * sysdeps/x86_64/ffsll.c (ffsl): Likewise. * sysdeps/x86_64/preconfigure.in: Likewise. * sysdeps/x86_64/preconfigure: Regenerated.
* Add __ILP32__ check when defining __WORDSIZEH.J. Lu2012-04-131-1/+1
|
* Fix variable check in sparc clock frequency probing.Antoine Balestrat2012-04-131-1/+1
| | | | | * sysdeps/unix/sysv/linux/sparc/sparc64/get_clockfreq.c (__get_clockfreq_via_proc_openprom): Fix test on wrong variable.
* Update sparc libm ULPs.David S. Miller2012-04-111-10/+124
| | | | * sysdeps/sparc/fpu/libm-test-ulps: Update.
* Add __snseconds_t and __SNSECONDS_T_TYPEH.J. Lu2012-04-114-0/+4
|
* Use __builtin_bswap32/64 in x86_64 <bits/byteswap.h>H.J. Lu2012-04-101-32/+53
|
* New ld.so argument --inhibit-ldcache to disable ld.so.cache lookupSiddhesh Poyarekar2012-04-111-1/+4
| | | | | | | | | | | It may sometimes be desirable to make the dynamic linker only pick up libraries from the library path and rpath and not look at the ld.so.cache that ldconfig generates. An example of such a use case is the glibc testsuite where the dynamic linker must not be influenced by any external paths or caches. This change adds a new option --inhibit-ldcache that when used, tells the dynamic linker to not use ld.so.cache even if it is available.
* Fix spurious overflow exceptions from x86/x86_64 powl (bug 13872).Joseph Myers2012-04-092-24/+38
|
* Fix ctan, ctanh overflow (bug 11521).Joseph Myers2012-04-092-20/+128
|
* Fix missing clobber in i386 __sincos_code asm.Roland McGrath2012-04-091-7/+7
|
* Fix missing overflow exceptions from pow (bug 13873).Joseph Myers2012-04-091-2/+3
|
* Fix x86 pow inaccuracy for large integer exponents (bug 706).Joseph Myers2012-04-092-4/+64
|
* Use __kernel_standard instead of __kernel_standard_f in exp wrapper (bug 13705).Aurelien Jarno2012-04-081-2/+2
|
* memset: also update copyright yearsMike Frysinger2012-04-082-2/+2
| | | | Signed-off-by: Mike Frysinger <vapier@gentoo.org>
* memset: fix define usage for shared libsMike Frysinger2012-04-072-2/+2
| | | | | | | The proper define to check "am I in a shared lib" is "SHARED", not "PIC". The two new memset_chk functions incorrectly depend on "PIC". Signed-off-by: Mike Frysinger <vapier@gentoo.org>
* Handle some new sparc relocation types.David S. Miller2012-04-072-0/+18
| | | | | | | | * elf/elf.h (R_SPARC_WDISP10): Define. * sysdeps/sparc/sparc32/dl-machine.h (elf_machine_rela): Handle R_SPARC_SIZE32. * sysdeps/sparc/sparc64/dl-machine.h (elf_machine_rela): Handle R_SPARC_SIZE64 and R_SPARC_H34.