aboutsummaryrefslogtreecommitdiff
path: root/arch/powerpc64/bits (follow)
Commit message (Expand)AuthorAgeFilesLines
* add bits/hwcap.h and include it in sys/auxv.h•••aarch64, arm, mips, mips64, mipsn32, powerpc, powerpc64 and sh have cpu feature bits defined in linux for AT_HWCAP auxv entry, so expose those in sys/auxv.h it seems the mips hwcaps were never exposed to userspace neither by linux nor by glibc, but that's most likely an oversight. Szabolcs Nagy2016-10-201-0/+40
* make brace placement in public header typedef'd structs consistent•••commit befa5866ee30d09c0c96e88af2eabff5911342ea performed this change for struct definitions that did not also involve typedef, but omitted the latter. Rich Felker2016-07-031-2/+1
* make brace placement in public header struct definitions consistent•••placing the opening brace on the same line as the struct keyword/tag is the style I prefer and seems to be the prevailing practice in more recent additions. these changes were generated by the command: find include/ arch/*/bits -name '*.h' \ -exec sed -i '/^struct [^;{]*$/{N;s/\n/ /;}' {} + and subsequently checked by hand to ensure that the regex did not pick up any false positives. Rich Felker2016-07-036-14/+7
* fix CBAUDEX in powerpc termios.h•••it seems it was a typo. Szabolcs Nagy2016-07-031-1/+1
* fix powerpc termios.h macro exposure/namespace issues•••same changes as in the generic header. and BOTHER and IBSHIFT were removed (present in linux uapi but not in glibc) and TIOCSER_TEMT was added (present in glibc). Szabolcs Nagy2016-07-031-12/+12
* remove mips and powerpc ioctls that are missing from linux uapi•••mips and powerpc use their own asm/ioctls.h, not the asm-generic/ioctls.h and they lack termiox macros that are available on other targets. see kernel commit 1d65b4a088de407e99714fdc27862449db04fb5c Szabolcs Nagy2016-07-031-8/+0
* add missing TIOC* macros to ioctl.h•••these are defined in linux asm/ioctls.h. (powerpc64 and powerpc bits/ioctl.h are now identical) Szabolcs Nagy2016-07-031-3/+3
* add missing SIOCSIFNAME from linux/sockios.h to ioctl.h•••glibc ioctl.h has it too. Szabolcs Nagy2016-07-031-0/+1
* remove ioctl macros that were removed from linux uapi•••TIOCTTYGSTRUCT, TIOCGHAYESESP, TIOCSHAYESESP and TIOCM_MODEM_BITS were removed from the linux uapi and not present in glibc ioctl.h Szabolcs Nagy2016-07-031-7/+0
* add preadv2 and pwritev2 syscall numbers for linux v4.6•••the syscalls take an additional flag argument, they were added in commit f17d8b35452cab31a70d224964cd583fb2845449 and a RWF_HIPRI priority hint flag was added to linux/fs.h in 97be7ebe53915af504fb491fb99f064c7cf3cb09. the syscall is not allocated for microblaze and sh yet. Szabolcs Nagy2016-06-091-0/+2
* deduplicate __NR_* and SYS_* syscall number definitionsBobby Bingham2016-05-121-360/+0
* fix spurious trailing whitespace in powerpc & powerpc64 bits/errno.hRich Felker2016-05-081-1/+1
* add powerpc64 portBobby Bingham2016-05-0823-0/+1689