about summary refs log tree commit diff
path: root/ports/sysdeps/unix
Commit message (Collapse)AuthorAgeFilesLines
* Remove __ptrvalue, __bounded and __unbounded.Joseph Myers2013-02-139-14/+14
|
* Add CFI information for MIPS assembly sources.Joseph Myers2013-02-1114-25/+77
|
* m68k: update kernel-features.hAndreas Schwab2013-02-081-0/+20
|
* Remove CHECK_N and bp-checks.h.Joseph Myers2013-02-0811-40/+25
|
* ARM: Support loading unmarked objects from cache.Carlos O'Donell2013-02-082-2/+13
| | | | | | | | | | | | ARM now supports loading unmarked objects from the dynamic loader cache. Unmarked objects can be used with the hard-float or soft-float ABI. We must support loading unmarked objects during the transition period from a binutils that does not mark objects to one that does mark them with the correct ELF flags. Signed-off-by: Carlos O'Donell <carlos@redhat.com>
* Remove CHECK_1 and CHECK_1_NULL_OK.Joseph Myers2013-02-087-17/+7
|
* MIPS: Correct formatting of syscall wrapper `asm' specifiers.Maciej W. Rozycki2013-02-053-120/+120
|
* MIPS: Respect the legacy syscall restart convention.Maciej W. Rozycki2013-02-053-87/+234
| | | | | | | | | | | | | | | That convention requires the instruction immediately preceding SYSCALL to initialize $v0 with the syscall number. Then if a restart triggers, $v0 will have been clobbered by the syscall interrupted, and needs to be reinititalized. The kernel will decrement the PC by 4 before switching back to the user mode so that $v0 has been reloaded before SYSCALL is executed again. This implies the place $v0 is loaded from must be preserved across a syscall, e.g. an immediate, static register, stack slot, etc. The restriction was lifted with Linux 2.6.36 kernel release and no special requirements are placed around the SYSCALL instruction anymore, however we still support older kernel binaries.
* Remove CHECK_STRING, CHECK_STRING_NULL_OK and __ubp_memchr.Joseph Myers2013-02-046-15/+7
|
* Remove CHECK_SIGSET and CHECK_SIGSET_NULL_OK.Joseph Myers2013-01-312-5/+2
|
* Remove bp-semctl.h and CHECK_SEMCTL.Joseph Myers2013-01-312-9/+2
|
* MIPS: Correct NewABI syscall wrapper whitespace damage.Maciej W. Rozycki2013-01-292-164/+164
|
* Add not-cancel.h for m68k/nptlAndreas Schwab2013-01-192-0/+2
|
* Use __extension__ with long long in installed headers.Joseph Myers2013-01-102-18/+18
|
* tilegx: fix ldd to work with both tilegx64 and tilegx32Chris Metcalf2013-01-103-0/+9
| | | | | This uses the same ldd-rewrite.sed hook as other platforms, with the minor tweak that tilegx uses /lib (64-bit) and /lib32 (32-bit).
* BZ#14985: Remove erroneous EPOLL_NONBLOCKAndreas Jaeger2013-01-083-9/+3
| | | | | | | | | | | | | | | | | | | | | | | | | [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-02588-621/+588
|
* alpha: Add lll_futex_timed_wait_bitsetRichard Henderson2013-01-021-0/+13
|
* Add script to update copyright notices and reformat some to facilitate its use.Joseph Myers2013-01-018-14/+8
|
* tile: support lll_futex_timed_wait_bitsetChris Metcalf2012-12-281-0/+13
|
* tile: fix DWARF bug in clone() for created threadChris Metcalf2012-12-211-1/+2
| | | | | | | | | | | | | Previously, we would see a bad frame in the gdb backtrace output, e.g.: (gdb) bt #0 foo () at foo.c:5 #1 0x000000aaaab68ee8 in start_thread () from /lib/libpthread.so.0 #2 0x000000aaaad01c88 in clone () from /lib/libc.so.6 #3 0x0000000000000000 in ?? () With this change the bogus frame #3 is gone and we have the same output as x86 does for the same program.
* aarch64: Fix compiler warning for unused declaration _x0Marcus Shawcroft2012-12-101-1/+0
|
* aarch64: Resolve sc_err and _x0 defined but not used warnings.Marcus Shawcroft2012-12-071-2/+0
|
* aarch64: Resolve implict cast warning.Marcus Shawcroft2012-12-071-1/+1
|
* aarch64: Tag ARM libc6-dependent libraries with FLAG_ELF_LIBC6Marcus Shawcroft2012-12-041-1/+3
| | | | | | | * sysdeps/unix/sysv/linux/aarch64/ldconfig.h: Add entries for /lib/ld-linux.so.3 and /lib/ld-linux-armhf.so.3. Signed-off-by: Steve McIntyre <steve.mcintyre@linaro.org>
* aarch64: Tag ARM and AArch64 binaries in the ldconfig cacheMarcus Shawcroft2012-12-041-0/+18
| | | | | | | Add the correct tags for ARM and AArch64 libraries in the ldconfig cache for AArch64. Signed-off-by: Steve McIntyre <steve.mcintyre@linaro.org>
* arm: Check for the FLAG_ARM_LIBHF flag in the ldconfig cacheMarcus Shawcroft2012-12-041-0/+29
| | | | Signed-off-by: Steve McIntyre <steve.mcintyre@linaro.org>
* arm: Tag ARM libc6-dependent binaries with FLAG_ELF_LIBC6Marcus Shawcroft2012-12-041-0/+25
| | | | Signed-off-by: Steve McIntyre <steve.mcintyre@linaro.org>
* arm: Tag ARM and AArch64 binaries in the ldconfig cache.Marcus Shawcroft2012-12-041-0/+73
| | | | | | | Add the correct tags for ARM and AArch64 libraries in the ldconfig cache for ARM. Signed-off-by: Steve McIntyre <steve.mcintyre@linaro.org>
* ia64: clock_getcpuclockid.c: drop unused fileMike Frysinger2012-11-291-31/+0
| | | | | | | | Since we no longer support __ASSUME_POSIX_CPU_TIMERS, the ia64 code no longer needs to override HAS_CPUCLOCK in the common file. Drop the ia64 shim as well. Signed-off-by: Mike Frysinger <vapier@gentoo.org>
* Add 64-bit support to MIPS register-dump.h (bug 14893).Joseph Myers2012-11-291-12/+29
|
* hppa: Remove socket.h and implement socket_type.h.Carlos O'Donell2012-11-292-444/+55
|
* hppa: Cleanup two build warnings for integer to pointers casts.Carlos O'Donell2012-11-291-2/+2
|
* aarch64: Use FLAG_AARCH64_LIB64 ldconfig cache tag.Marcus Shawcroft2012-11-291-0/+45
| | | | | | | | | Use the new FLAG_AARCH64_LIB64 ldconfig cache tag for AArch64, similarly to the way tags are handled for other architectures. Signed-off-by: Steve McIntyre <steve.mcintyre@linaro.org> Reviewed-by: Carlos O'Donell <carlos@systemhalted.org> Signed-off-by: Marcus Shawcroft <marcus.shawcroft@linaro.org>
* Implement MIPS n64 sendfile64 as alias of sendfile syscall (bug 14822).Joseph Myers2012-11-222-0/+3
|
* m68k: fix return value of lll_futex_timed_wait_bitsetAndreas Schwab2012-11-211-1/+1
|
* Avoid $(shell) in determining default ARM ABI.Joseph Myers2012-11-211-16/+7
|
* aarch64: Fix lll_futex_timed_wait_bitset return value sign.Marcus Shawcroft2012-11-211-1/+1
| | | | | The implementation of lll_futex_timed_wait_bitset should not be negating the futex syscall return value on error.
* Use parentheses around MIPS syscall macro arguments.Joseph Myers2012-11-202-46/+46
|
* Fix int-to-pointer-cast warnings for MIPS.Joseph Myers2012-11-202-9/+9
|
* Fix unused variable warnings from MIPS syscall macros.Joseph Myers2012-11-193-9/+9
|
* hppa: Mark __pthread_once as a hidden def.Carlos O'Donell2012-11-191-2/+2
|
* hppa: Add ____longjmp_check C implementation.Carlos O'Donell2012-11-191-0/+47
|
* m68k: fix cancellable syscall with 5 or 6 argumentsAndreas Schwab2012-11-181-5/+5
|
* m68k: define lll_futex_timed_wait_bitsetAndreas Schwab2012-11-181-1/+13
|
* Fix thumb2 build breakage in libcryptMarcus Shawcroft2012-11-141-0/+4
|
* AArch64 PortMarcus Shawcroft2012-11-0961-0/+6274
|
* Define lll_futex_timed_wait_bitset for MIPS.Joseph Myers2012-11-051-0/+12
|
* Define lll_futex_timed_wait_bitset for ARM.Joseph Myers2012-11-051-1/+13
|
* [BZ #157] Remove include/stub-tag.h for good.Thomas Schwinge2012-11-043-4/+0
|