summaryrefslogtreecommitdiff
path: root/sysdeps/generic
AgeCommit message (Collapse)AuthorFilesLines
2012-03-28Avoid overflows from long double functions using __kernel_standard.Joseph Myers1-0/+1
2012-03-27Merge branch 'elf-move'Andreas Jaeger3-247/+0
Conflicts: debug/backtracesymsfd.c sysdeps/generic/elf/backtracesymsfd.c sysdeps/i386/configure.in
2012-03-22Add forward declaration for La_x32_regs/La_x32_retvalH.J. Lu1-0/+2
2012-03-21Add x32 support to dynamic linker auditH.J. Lu1-0/+9
2012-03-21Add _ITOA_NEEDED and _ITOA_WORD_TYPEH.J. Lu1-4/+20
Add _ITOA_NEEDED and _ITOA_WORD_TYPE to override _itoa and _itowa.
2012-03-20Move stdio-common/_itoa.h to sysdeps/genericH.J. Lu2-1/+93
2012-03-20Remove old debug/backtracesyms files, replace with elf versions.Andreas Jaeger2-247/+0
2012-03-19Move sysdeps/generic/elf/* to sysdeps/genericAndreas Jaeger3-0/+0
2012-03-19Create and use libc_feupdateenv_test.Richard Henderson1-0/+18
We can reduce the number of STMXCSR, and often we can avoid the call to __feraiseexcept.
2012-03-19Create and use SET_RESTORE_ROUND{,_NOEX,_53BIT}{,F,L}.Richard Henderson1-0/+69
2012-03-19Convert libc_feholdexcept et al from macros to inline functions.Richard Henderson1-21/+78
2012-03-19Make inline __isnan, __isinf_ns, __finite generic.Richard Henderson1-13/+26
For code generation to stay identical on x86_64, this requires that we define the fp word manipulation macros before including the generic header.
2012-03-16Add x32 support to ldconfigH.J. Lu1-0/+1
2012-03-14Implement and use libc_feholdexcept_setround_53bit and libc_feupdateenv_53bitAndreas Jaeger1-0/+5
so that double arithmetic in s_sin is done in 53 bit (without extend i386 double precision)
2012-03-12Fix another instance of the _dl_random masking bug, plus coding style.David S. Miller1-2/+2
* sysdeps/generic/dl-osinfo.h (_dl_setup_stack_chk_guard): Fix masking out of the most significant byte of random value used. * sysdeps/unix/sysv/linux/dl-osinfo.h (_dl_setup_stack_chk_guard): Fix coding style in previous change.
2012-03-09Move math/math_private.h to sysdeps/generic/math_private.h.Richard Henderson1-0/+392
This reverts commit 60d6f5a6f50d838bcb4240fcc0223cac445c6c83.
2012-03-052012-03-05 Tom de Vries <tom@codesourcery.com>Tom de Vries1-2/+2
* sysdeps/generic/dl-osinfo.h (_dl_setup_stack_chk_guard): Ensure default stack guard is set in last bytes. * sysdeps/unix/sysv/linux/dl-osinfo.h (_dl_setup_stack_chk_guard): Same.
2012-02-21Remove old initfini mechanism.Joseph Myers1-138/+0
2012-02-09Replace FSF snail mail address with URLs.Paul Eggert74-222/+148
2012-02-09Remove _G_HAVE_SYS_CDEFS.Marek Polacek1-1/+0
2012-02-07Remove _G_ARGS macros.Marek Polacek1-3/+0
2012-01-26Remove __STDC__ conditionals from non-installed headers.Joseph Myers1-5/+1
2012-01-26Remove __STDC__ conditionals from installed headers.Joseph Myers1-5/+1
2012-01-08Optimize xmalloc, xcalloc, xrealloc, and xstrdupUlrich Drepper1-5/+8
Add alloc_size attribute and apply consistently the malloc attribute to xmalloc, xcalloc, xrealloc, and xstrdup.
2012-01-08More fallout from supporting only ELFUlrich Drepper2-19/+5
2012-01-07Remove pre-ISO C supportUlrich Drepper3-28/+26
No more __const.
2012-01-07Remove Alpha support from ldsodefs.hUlrich Drepper1-10/+0
2012-01-07More IA-64 removalUlrich Drepper1-11/+1
2011-12-10Optimize generic ELF hash function a bit moreUlrich Drepper1-1/+4
2011-12-04Small optimization of generic ELF hash functionUlrich Drepper1-25/+22
2011-12-04Fix attreibute for _dl_elf_hashUlrich Drepper1-1/+1
2011-12-03Fix more warningsUlrich Drepper1-1/+2
2011-11-12Prepare dwarf2.h for multiple inclusionUlrich Drepper1-0/+5
2011-11-12Fix incomplete edit in last patchUlrich Drepper1-2/+0
2011-11-12Avoid redefinition of DWARF constantsUlrich Drepper2-76/+47
2011-08-16Improve printing of lookup scopesUlrich Drepper1-1/+1
The scope of a new object should be printed earlier and when the scope of an already loaded object is extended only the changes should be printed.
2011-08-14Warning patrol.Roland McGrath1-1/+1
2011-08-13Implement LD_DEBUG=scopesUlrich Drepper1-2/+6
2011-07-19_dl_sort_fini: Remove unused argumentMarek Polacek1-3/+3
2011-06-29Fix build with multiarch disabled.Aurelien Jarno1-1/+8
2011-05-15Make stack canary value harder to read through read overflowUlrich Drepper1-9/+21
2011-05-14Fix typo in commentUlrich Drepper1-1/+1
2011-05-14Fix potential problem with out-of-scope bufferUlrich Drepper1-2/+2
2011-04-22Remove doubled words.Jim Meyering1-2/+2
2010-10-26Fix concurrency problem between dl_open and dl_iterate_phdrAndreas Krebbel1-2/+5
2010-10-24Require suid bit on audit objects in privileged programsAndreas Schwab1-4/+2
2010-08-11Fix IPTOS_CLASS definition.Ulrich Drepper1-3/+2
2010-05-03Don't deadlock in __dl_iterate_phdr while (un)loading objects.Andreas Schwab1-0/+4
2010-03-26Mark _dl_random attribute_relro in the header file.Richard Henderson1-1/+1
It's already so marked in dl-sysdep.c. Failure to so mark in the header file leads the compiler to believe that the variable should be addressable via the .sdata section. Signed-off-by: Richard Henderson <rth@twiddle.net>
2010-01-15ld.so: Adjust the auxv if ld.so is directly invoked.Andreas Krebbel1-2/+3
If a binary gets invoked by passing it as argument to ld.so the stack still holds the auxiliary vector of ld.so when entering the _start routine of the executable. So the invocation via ld.so is not fully transparent to the executable. This causes problems if the executable wants to scan the auxv itself.