about summary refs log tree commit diff
path: root/ports/ChangeLog.hppa
Commit message (Collapse)AuthorAgeFilesLines
* 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