about summary refs log tree commit diff
path: root/ports/ChangeLog.hppa
Commit message (Collapse)AuthorAgeFilesLines
* Remove trailing whitespace in ports.Joseph Myers2013-06-051-0/+42
|
* Avoid crashing in LD_DEBUG when program name is unavailableSiddhesh Poyarekar2013-05-291-0/+7
| | | | | | | | | Resolves: #15465 The program name may be unavailable if the user application tampers with argc and argv[]. Some parts of the dynamic linker caters for this while others don't, so this patch consolidates the check and fallback into a single macro and updates all users.
* Don't include expected results in libm-test test names.Joseph Myers2013-05-221-0/+4
|
* Handle sincos with generic libm-test logic.Joseph Myers2013-05-191-0/+4
|
* hppa: Cleanup libm-test-ulps.Carlos O'Donell2013-05-151-0/+3
| | | | | | | | | | | | | | | | Joseph Myers noted that there were several old and really very incorrect values in the hppa libm-test-ulps. This patch removes all of the ulps values for ceil, floor, rint, round, trun, llrint, and llround, all of which were previously incorreclty added (including some negative values which are really wrong). --- ports/ 2013-05-15 Carlos O'Donell <carlos@redhat.com> * sysdeps/hppa/fpu/libm-test-ulps: Remove old values for ceil, floor, rint, round, trunc, llrint, and llround.
* hppa: Update libm-test-ulpsCarlos O'Donell2013-05-151-0/+4
| | | | | | | | | | | | | | Update libm-test-ulps for hppa. There are a few entries with 4 or 5 ulps, but these appear to be expected. A more thorough review will be required if hppa switches long-double to a different type. --- ports/ 2013-05-15 Carlos O'Donell <carlos@redhat.com> * sysdeps/hppa/fpu/libm-test-ulps: Regenerate.
* hppa: Fix _FPU_GETCW and _FPU_SETCW.Carlos O'Donell2013-05-151-0/+7
| | | | | | | | | | | | | | | | | | | | The following patch fixes both _FPU_GETCW and _FPU_SETCW for hppa. The initial implementation was flawed and not well tested. We failed to set cw, and passed in the value of a register to fldd. This patch fixes both of those errors and allows the libm tests to pass without failure. Signed-off-by: Guy Martin <gmsoft@tuxicoman.be> Signed-off-by: Carlos O'Donell <carlos@redhat.com> --- 2013-05-15 Guy Martin <gmsoft@tuxicoman.be> Carlos O'Donell <carlos@redhat.com> [BZ# 15000] * ports/sysdeps/hppa/fpu/fpu_control.h (_FPU_GETCW): Set cw. (_FPU_SETCW): Pass address to fldd.
* New <math.h> macro named issignaling to check for a signaling NaN (sNaN).Thomas Schwinge2013-04-021-0/+4
| | | | It is based on draft TS 18661 and currently enabled as a GNU extension.
* Sync with Linux 3.8Andreas Jaeger2013-03-061-0/+6
|
* hppa: Remove unused lll_unlock_wake_cb.Carlos O'Donell2013-02-141-0/+7
| | | | | | There hasn't been a use for lll_unlock_wake_cb since it was removed globally in 2007-05-29. This patch removes the function from hppa's lowlevellock.[ch] implementation.
* Use __extension__ with long long in installed headers.Joseph Myers2013-01-101-0/+8
|
* BZ#14985: Remove erroneous EPOLL_NONBLOCKAndreas Jaeger2013-01-081-0/+6
| | | | | | | | | | | | | | | | | | | | | | | | | [BZ# 14985] * sysdeps/unix/sysv/linux/sparc/bits/epoll.h (EPOLL_NONBLOCK): Remove. * sysdeps/unix/sysv/linux/bits/epoll.h (EPOLL_NONBLOCK): Likewise. * sysdeps/unix/sysv/linux/x86/bits/epoll.h (EPOLL_NONBLOCK): Likewise. ChangeLog.mips: [BZ# 14985] * sysdeps/unix/sysv/linux/mips/bits/epoll.h (EPOLL_NONBLOCK): * Remove. ChangeLog.hppa: [BZ# 14985] * sysdeps/unix/sysv/linux/hppa/sys/epoll.h (EPOLL_NONBLOCK): Remove. ChangeLog.alpha: [BZ# 14985] * sysdeps/unix/sysv/linux/alpha/bits/epoll.h (EPOLL_NONBLOCK): Remove.
* Update copyright notices with scripts/update-copyrights.Joseph Myers2013-01-021-0/+5
|
* hppa: Fix ChangeLog format issues.Carlos O'Donell2012-11-291-5/+5
| | | | Remove trailing whitespace and canonicalize path names.
* hppa: Remove socket.h and implement socket_type.h.Carlos O'Donell2012-11-291-0/+3
|
* hppa: Cleanup two build warnings for integer to pointers casts.Carlos O'Donell2012-11-291-0/+5
|
* hppa: Add BZ#14447 to NEWS and ChangeLog.hppa.Carlos O'Donell2012-11-291-0/+1
|
* hppa: Mark __pthread_once as a hidden def.Carlos O'Donell2012-11-191-0/+5
|
* hppa: Fix fesetenv for FE_DFL_ENV.Carlos O'Donell2012-11-191-0/+2
| | | | | Switching back to FE_DFL_ENV should reset the FPU to the state as it was at the start of the program.
* hppa: Implement get-rounding-mode.hCarlos O'Donell2012-11-191-0/+3
| | | | | Implement get_rounding_mode using the new fpu_control.h support. Use get_rounding_mode from fegetround.
* hppa: Implement fpu_control.h.Carlos O'Donell2012-11-191-0/+2
| | | | | The HP-PARISC processor has full IEEE-754 support and we implement all of fpu_control.h.
* hppa: Implement __longjmp_chk.Carlos O'Donell2012-11-191-0/+8
| | | | Implement longjmp and the chk variant in C.
* Fix types of FE_DFL_ENV and FE_NOMASK_ENV (bug 14805).Joseph Myers2012-11-051-0/+7
|
* Make fma use of Dekker and Knuth algorithms use round-to-nearest (bug 14796).Joseph Myers2012-11-031-0/+3
|
* Make fenv.h FE_* macros usable in #if (bug 3439).Joseph Myers2012-11-031-0/+15
|
* Fix strtod handling of underflow (bug 14047).Joseph Myers2012-10-301-0/+5
|
* hppa: Add cfi direcvtives.Carlos O'Donell2012-10-291-0/+6
| | | | We add cfi directives to the syscall assembly.
* hppa: Fix r19 save and restore.Carlos O'Donell2012-10-291-0/+9
| | | | | | | | | We must save and restore r19 in both PIC and non-PIC situations since the kernel paths that clobber r19 are independent of that PIC-ness of userspace. In addition we choose r4 as the temporary register over r3 which is being used by recent gcc's as the frame pointer.
* hppa: Optimize syscall sequence.Carlos O'Donell2012-10-291-0/+6
| | | | | We remove an extraneous nop from the syscall sequence. No DO_CALL* may end in an instruction with a delay slot.
* Fix trailing whitespace.Carlos O'Donell2012-10-291-0/+4
|
* HPPA: Use <bits/fcntl-linux.h>Andreas Jaeger2012-10-261-0/+7
| | | | | | | * sysdeps/unix/sysv/linux/hppa/bits/fcntl.h: Remove all definitions and declarations that are provided by <bits/fcntl-linux.h> and include <bits/fcntl-linux.h>. (__O_PATH): Define.
* Don't set resource limits in tst-oddstacklimit-ENV.Joseph Myers2012-10-241-0/+5
|
* hppa: Update pthread.hCarlos O'Donell2012-10-101-0/+2
| | | | | | | Updates the hppa-specific pthread.h from the generic version. After this update the only difference between the generic version and the hppa version is the footer protected by the _PTHREAD_H_HPPA_ guard.
* hppa: Remove pt-initfini.cCarlos O'Donell2012-10-101-0/+2
| | | | Rmoves the unused pt-initfini.c
* hppa: Restore nptl/shlib-versions.Carlos O'Donell2012-10-101-0/+4
| | | | | On 2012-01-07 the nptl/shlib-versions file removed the hppa entry. This restores that entry in the hppa ports tree.
* Split my last ChangeLog entry into respective arch-specific filesSiddhesh Poyarekar2012-10-021-0/+5
|
* hppa: Use __prlimit64 as the internal name.Carlos O'Donell2012-09-201-0/+5
| | | | | | | Fix a build failure by using __prlimit64 as the internal function name for the versioned symbol prlimit64. Without this patch the build system attempts to alias prlimit64 to itself and that is invalid.
* hppa: Add EHWPOISON and bump errlist-compat to 260Carlos O'Donell2012-09-201-0/+8
| | | | | | Add errno EHWPOISON and bump the errlist-compat table to 260, providing 2 padding entries for future use before bumping is again required.
* Remove __ASSUME_STAT64_SYSCALL.Joseph Myers2012-08-271-0/+5
|
* Remove __ASSUME_MMAP2_SYSCALL.Joseph Myers2012-08-201-0/+5
|
* Add generic versions of pthread_spin_lock and pthread_spin_trylock.Maxim Kuvyrkov2012-08-151-0/+5
|
* hppa: add missing prlimit64 symbolMike Frysinger2012-08-121-0/+5
| | | | | | | | All other arches have this in their syscall list. Looks like hppa is missing it though and breaks one or two apps that try to call it. URL: https://bugs.gentoo.org/411745 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
* Remove pre-2.6.16 Linux kernel support.Joseph Myers2012-08-071-0/+7
|
* Remove __ASSUME_FCNTL64.Joseph Myers2012-08-011-0/+5
|
* Merge Linux 3.5 epoll changesAndreas Jaeger2012-07-261-0/+5
| | | | Add EPOLLWAKEUP.
* Move all files into ports/ subdirectory in preparation for merge with glibc glibc-2.16-ports-before-mergeJoseph Myers2012-07-011-0/+877