about summary refs log tree commit diff
Commit message (Collapse)AuthorAgeFilesLines
* Fix CL date.Marek Polacek2012-05-261-1/+1
|
* Optimize handling of denormals in logb/logbf/logblAndreas Schwab2012-05-269-32/+46
|
* Fix fma test for underflow.Marek Polacek2012-05-262-1/+8
|
* Fix stack size and address inconsistency due to executable stackSiddhesh Poyarekar2012-05-265-16/+111
| | | | | | | | | | | | | | | When a stack is marked executable due to loading a DSO that requires an executable stack, the logic tends to leave out a portion of stack after the first frame, thus causing a difference in the value returned by pthread_getattr_np before and after the stack is marked executable. It ought to be possible to fix this by marking the rest of the stack as executable too, but in the interest of marking as less of the stack as executable as possible, the path this fix takes is to make pthread_getattr_np also look at the first frame as the underflow end of the stack and compute size and stack top accordingly. The above happens only for the main process stack. NPTL thread stacks are not affected by this change.
* Remove __ASSUME_NEW_GETRLIMIT_SYSCALL.Joseph Myers2012-05-254-95/+17
|
* Don't use header files in glibc configureH.J. Lu2012-05-253-328/+14
|
* NEWS item for --enable-systemtapRoland McGrath2012-05-251-0/+6
|
* i386 port of the pthread SystemTap probesRayson Ho2012-05-259-12/+46
|
* Add systemtap static probe points in generic and x86_64 pthread code.Roland McGrath2012-05-2526-53/+266
|
* Add systemtap static probe points in setjmp/longjmp on x86.Roland McGrath2012-05-259-9/+42
|
* Add --enable-systemtap configuration to define static probe points.Roland McGrath2012-05-2510-5/+179
|
* Remove pre-2.4 Linux kernel support.Joseph Myers2012-05-2539-1426/+240
|
* ppc: Pass hwcap to ifuncs.Richard Henderson2012-05-255-7/+18
| | | | | | | | | | * sysdeps/powerpc/powerpc32/dl-irel.h (elf_ifunc_invoke): Pass dl_hwcap to ifunc resolver. * sysdeps/powerpc/powerpc32/dl-machine.h (elf_machine_rela): Use elf_ifunc_invoke. * sysdeps/powerpc/powerpc64/dl-irel.h (elf_ifunc_invoke): Pass dl_hwcap to ifunc resolver. * sysdeps/powerpc/powerpc64/dl-machine.h (resolve_ifunc): Likewise.
* Mention BZ 12495 and 13576 in NEWSH.J. Lu2012-05-251-13/+13
|
* Add missing comma in list of fixed bugs.Joseph Myers2012-05-251-1/+1
|
* Fix acosf underflow (bug 14153).Joseph Myers2012-05-254-4/+11
|
* 2012-05-24 Jeff Law <law@redhat.com>Jeff Law2012-05-243-1/+77
| | | | | * stdio-common/Makefile (tests): Add bug25. * stdio-common/bug25.c: New test.
* Make free chunk size a multiple of MALLOC_ALIGNMENTH.J. Lu2012-05-242-4/+13
|
* conformtest: Update expectations for stdio.h and stdlib.h.Joseph Myers2012-05-243-22/+69
|
* Remove use of INTDEF/INTUSE in intlAndreas Schwab2012-05-2412-41/+35
|
* Remove use of INTDEF/INTUSE in libioAndreas Schwab2012-05-2498-729/+801
|
* syscalls.list support for vDSO IFUNCs, use it for x32 gettimeofday and time.Roland McGrath2012-05-246-48/+128
|
* Switch gettimeofday from INTUSE to libc_hidden_proto.Roland McGrath2012-05-249-41/+58
|
* Properly handle MALLOC_ALIGNMENT > 2 * SIZE_SZH.J. Lu2012-05-242-14/+75
|
* Add x32 abilist filesH.J. Lu2012-05-2414-0/+3076
|
* Add x32 C++ type dataH.J. Lu2012-05-243-0/+76
|
* Add tests for underflow exception bugs 10846, 14036.Joseph Myers2012-05-243-5/+13
|
* Add getauxval news entry.Richard Henderson2012-05-241-0/+4
|
* Don't include exceptions in libm-test-ulps test names.Joseph Myers2012-05-247-73/+60
|
* Test underflow exceptions in libm-test.inc.Joseph Myers2012-05-245-154/+241
|
* Forgot changelog in previous commit.David S. Miller2012-05-231-0/+5
|
* Remove some sparc cob-webs leftover after Joseph's recent changes.David S. Miller2012-05-231-3/+1
| | | | | * sysdeps/unix/sysv/linux/sparc/sparc32/sigaction.c (__libc_sigaction): Remove unused local variables.
* Add sysdeps/unix/sysv/linux/x86_64/x32/configureH.J. Lu2012-05-232-0/+22
|
* mktime: avoid signed integer overflowPaul Eggert2012-05-232-4/+8
| | | | | * time/mktime.c (__mktime_internal): Do not mishandle the case where diff == INT_MIN.
* mktime: simplify computation of averagePaul Eggert2012-05-232-3/+5
| | | | | * time/mktime.c (ranged_convert): Use new time_t_avg function instead of rolling our own (probably-slower) code.
* mktime: do not assume signed right shift propagates sign bitPaul Eggert2012-05-232-6/+18
| | | | | | | * time/mktime.c (isdst_differ): New static function. (__mktime_internal): No need to normalize tm_isdst now. (__mktime_internal, not_equal_tm): Use isdst_differ to compare tm_isdst values.
* mktime: merge another wrapv change from gnulibPaul Eggert2012-05-232-1/+5
| | | | | * time/mktime.c (TYPE_MAXIMUM): Rework slightly to avoid diagnostics from some compilers.
* mktime: remove incorrect attempt at unusual arithmeticsPaul Eggert2012-05-232-9/+13
| | | | | | | | * time/mktime.c (TYPE_ONES_COMPLEMENT, TYPE_SIGNED_MAGNITUDE): Remove. The code didn't really work on such machines anyway. (TYPE_MINIMUM): Assume two's complement. (twos_complement_arithmetic): Verify that long_int and time_t are two's complement (or unsigned, in the latter case).
* mktime: check signed shifts on long_int and time_t, tooPaul Eggert2012-05-232-3/+10
| | | | | | * time/mktime.c (SHR): Check that shifts work as desired on the types long_int and time_t too, as SHR is used on such types.
* mktime: do not assume 'long' is wide enoughPaul Eggert2012-05-232-12/+26
| | | | | | | | | * time/mktime.c (verify): Move decl up. (long_int): New type. (leapyear, ydhms_diff, guess_time_tm, __mktime_internal): Use it, to remove assumption in the code that 'long' is wide enough to store year values. This assumption is not true on x32 and on some non-glibc platforms.
* mktime: merge wrapv change from gnulibPaul Eggert2012-05-232-25/+99
| | | | | | | | * time/mktime.c (WRAPV): New macro. (time_t_avg, time_t_add_ok, time_t_int_add_ok): New static functions. (guess_time_tm, __mktime_internal): Do not assume that signed integer overflow wraps around; modern compilers generate code where this assumption is no longer valid.
* Replace "jmp L(pseudo_end)" with "ret"H.J. Lu2012-05-233-4/+11
|
* Add ChangeLog for last changeAndreas Jaeger2012-05-231-0/+5
|
* Move poll to syscalls.listAndreas Jaeger2012-05-232-47/+1
|
* Add more constants to Linux <sys/reboot.h>Andreas Jaeger2012-05-232-1/+13
| | | | | | | | | 2012-05-23 Andreas Jaeger <aj@suse.de> Maximilian Attems <max@stro.at> * sysdeps/unix/sysv/linux/sys/reboot.h (RB_SW_SUSPEND, RB_KEXEC): New macros.
* Fix x32 sched_getcpu.S error codeH.J. Lu2012-05-232-4/+14
|
* Add comments suggesting moving some functions to syscalls.list.Joseph Myers2012-05-236-0/+17
|
* Do not mention old Linux kernel versions in installation documentation.Joseph Myers2012-05-233-15/+12
|
* Update from Linux 3.4Andreas Jaeger2012-05-238-5/+41
|
* Simplify dl-vdso.h use of assert.Roland McGrath2012-05-222-9/+9
|