search for: __bitsize

Displaying 2 results from an estimated 2 matches for "__bitsize".

Did you mean: d_bitsize
2013 Nov 08
1
[PATCH 2/3] syscalls: Add syscalls needed by arm64
...ndif This applies equally to a 32-bit platform that doesn't define __NR_open, except there we need to add O_LARGEFILE to the flags and call __openat in order to not have to pull in openat.c as well. I suggest merging this into open.c and making it look something like: #ifndef __NR_open # if __BITSIZE == 32 extern int __openat(int, const char *, int, mode_t); int open(const char *pathname, int flags, mode_t mode) { return __openat(AT_FDCWD, pathname, flags | O_LARGEFILE, mode); } # else extern int openat(int, const char *, int, ...); int open(const char *pathname, int flags, mode_t mode) {...
2013 Nov 08
9
[PATCH 0/3] Introduce arm64 support
Hello, This series introduces arm64 support to klibc. I've rebased the work from Neil Williams and Anil Singhar into the following three patches. Most of the code changes are due to new syscall implementations being needed for arm64 as a only a minimal set of syscalls are defined in the arm64 kernel. This series is to be applied against the latest klibc, just after 25a66fa README.klibc: