aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2013-06-27Add GLRO(dl_hwcap2), conditional on per platform HWCAP2_AVAIL.rsa/hwcap2_v5Ryan S. Arnold
2013-06-27_dl_static_init: Remove nested locking.Maciej W. Rozycki
This function is now called from dl_open_worker with the GL(dl_load_lock) lock held and no longer needs local protection. GL(dl_load_lock) also correctly protects _dl_lookup_symbol_x called here that relies on the caller to have serialized access to the data structures it uses.
2013-06-26Require GCC 4.4 or later to build glibc.Joseph Myers
2013-06-26Add a test for BZ #15674H.J. Lu
2013-06-26Mention BZ #15674H.J. Lu
2013-06-26Fix buffers overrun in x86_64 memcmp-ssse3.SLiubov Dmitrieva
2013-06-26[BZ #15022] Avoid repeated calls to DL_STATIC_INIT for the same module.Maciej W. Rozycki
2013-06-26Add AT_HWCAP2 as a new auxv_t a_type to elf.h.Ryan S. Arnold
2013-06-25drop NEWS mentionMike Frysinger
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2013-06-25Fix missing libc-internal.h include.Richard Henderson
* locale/programs/locarchive.c: Include <libc-internal.h>
2013-06-25Update texinfo.tex.Joseph Myers
2013-06-25m68k: fix bad use of register alias in cfi insnAndreas Schwab
2013-06-24[BZ #15666] alpha: Add __sqrt*_finite definitionsRichard Henderson
With compatibility for ev6 and non-ev6 builds, as the non-ev6 did manage to get definitions emitted for the float and double functions.
2013-06-24[BZ #10283] localedef: align fixed maps to SHMLBAMike Frysinger
Many Linux arches require fixed mmaps to be aligned higher than pagesize, so use the SHMLBA define as it represents this quantity exactly. This fixes spurious errors seen on those arches like: cannot map archive header: Invalid argument URL: http://sourceware.org/bugzilla/show_bug.cgi?id=10283 Reported-by: CHIKAMA Masaki <masaki.chikama@gmail.com> Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2013-06-24libc-internal.h: add ALIGN helper macrosMike Frysinger
Rather than open coding the masks, add helper macros to do the magic. This makes code easier to read. Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2013-06-24BZ #12310: pthread_exit in static app. segfaultsVladimir Nikulichev
Static applications that call pthread_exit on the main thread segfault. This is because after a thread terminates __libc_start_main decrements __nptl_nthreads which is only defined in pthread_create. Therefore the right solution is to add a requirement to pthread_create from pthread_exit. ~~~ nptl/ 2013-06-24 Vladimir Nikulichev <v.nikulichev@gmail.com> [BZ #12310] * pthread_exit.c: Add reference to pthread_create.
2013-06-24PowerPC: Enable POWER8 platform sans hwcap bits.Ryan S. Arnold
2013-06-24Regenerate INSTALL fileSiddhesh Poyarekar
2013-06-24Fix typo in commentSiddhesh Poyarekar
2013-06-23alpha: Update libm-test-ulpsRichard Henderson
2013-06-22Include <string.h> in nptl/pthread_setattr_default_np.c.Joseph Myers
2013-06-22Include <string.h> in sysdeps/unix/sysv/linux/libc_fatal.c.Joseph Myers
2013-06-22Fix soft-fp shadowing between __FP_FRAC_ADD_3 and _FP_MUL_MEAT_2_wide_3mul ↵Joseph Myers
(bug 15667).
2013-06-22Remove dead DL_DST_REQ_STATIC code.Maciej W. Rozycki
2013-06-22Add sh4 implementation of fegetexceptflag (bug 15655).Kaz Kojima
2013-06-21Fix bad shift in soft-fp (bug 7006).Joseph Myers
2013-06-21dlfcn/Makefile: Avoid repeated $(*-ENV) definitions.Maciej W. Rozycki
2013-06-21Add sh4 implementation of fegetexceptflag.Kaz Kojima
2013-06-20Fix loop construction to functions callsAdhemerval Zanella
Check wheter the compiler has the option -fno-tree-loop-distribute-patterns to inhibit loop transformation to library calls and uses it on memset and memmove default implementation to avoid recursive calls.
2013-06-20Allow fesetround failures in math/test-misc.c if ROUNDING_TESTS fails.Joseph Myers
2013-06-20Avoid spurious failures from <fenv.h> fallback functions (bug 15654).Joseph Myers
2013-06-18Use rtld-CPPFLAGS in rtld-%.os rules for generated sources.Roland McGrath
2013-06-18sysdeps/arm/arm-mcount.S: Comment typo fix.Roland McGrath
2013-06-18ARM: Make armv7 memcpy implementations SFI-friendlyRoland McGrath
2013-06-18ARM: Clean up __libc_ifunc_impl_listRoland McGrath
2013-06-18Fix warnings from ARM soft-float fpu_control.h.Joseph Myers
2013-06-18Wrap test-fpucw.c for ARM.Joseph Myers
2013-06-17PowerPC: Reserve TCB space for EBB frameworkAdhemerval Zanella
This patch reserves four pointer to be used in future Event-Based Branch framework for PowerPC.
2013-06-17Make ARM feenableexcept detect failure (bug 14907).Joseph Myers
2013-06-17Sort sysd-rules-patterns by descending pattern length.Roland McGrath
2013-06-17Rewrite sysd-rules generation using an awk script.Roland McGrath
2013-06-17Use math-tests.h more in math/test-misc.Joseph Myers
2013-06-15Fix spurious "inexact" exceptions from dbl-64 sqrt (bug 15631).Joseph Myers
2013-06-15Add another fma test.Joseph Myers
2013-06-15Add documentation for default pthread attribute functionsSiddhesh Poyarekar
2013-06-15New API to set default thread attributesSiddhesh Poyarekar
This patch introduces two new convenience functions to set the default thread attributes used for creating threads. This allows a programmer to set the default thread attributes just once in a process and then run pthread_create without additional attributes.
2013-06-14Stop MIPS setjmp / longjmp saving / restoring floating-point flags (bug 14909).Joseph Myers
2013-06-14Update ARM _FPU_RESERVED value.Joseph Myers
2013-06-14Add math-tests.h for MIPS.Joseph Myers
2013-06-14Set fast unaligned load flag for new Intel microarchitectureLiubov Dmitrieva
I have small patch for new Intel Silvermont machines. http://newsroom.intel.com/community/intel_newsroom/blog/2013/05/06/intel-launches-low-power-high-performance-silvermont-microarchitecture I checked this on my machine and see that strcpy, ... unaligned versions are faster than ssse3 versions.