search for: c298f66

Displaying 5 results from an estimated 5 matches for "c298f66".

2013 Nov 12
0
[klibc:master] arm64: remove useless <klibc/asmmacros.h> file
...arch/arm64/setjmp.S | 2 -- usr/klibc/arch/arm64/sysstub.ph | 1 - usr/klibc/arch/arm64/vfork.S | 1 - 4 files changed, 15 deletions(-) diff --git a/usr/include/arch/arm64/klibc/asmmacros.h b/usr/include/arch/arm64/klibc/asmmacros.h deleted file mode 100644 index c298f66..0000000 --- a/usr/include/arch/arm64/klibc/asmmacros.h +++ /dev/null @@ -1,11 +0,0 @@ -/* - * usr/include/arch/arm64/klibc/asmmacros.h - * - * Assembly macros used by arm64 system call stubs - */ - -#ifndef _KLIBC_ASMMACROS_H -#define _KLIBC_ASMMACROS_H - - -#endif /* _KLIBC_ASMMACROS_H */ diff --...
2013 Nov 12
0
[klibc:master] arm64: Add arm64 support
...Time of last status change. */ + unsigned long st_ctime_nsec; + unsigned int __unused4; + unsigned int __unused5; + }; + +#endif diff --git a/usr/include/arch/arm64/klibc/asmmacros.h b/usr/include/arch/arm64/klibc/asmmacros.h new file mode 100644 index 0000000..c298f66 --- /dev/null +++ b/usr/include/arch/arm64/klibc/asmmacros.h @@ -0,0 +1,11 @@ +/* + * usr/include/arch/arm64/klibc/asmmacros.h + * + * Assembly macros used by arm64 system call stubs + */ + +#ifndef _KLIBC_ASMMACROS_H +#define _KLIBC_ASMMACROS_H + + +#endif /* _KLIBC_ASMMACROS_H */ diff --git a/usr...
2013 Nov 08
0
[PATCH 3/3] arm64: Introduce arm64 support
...Time of last status change. */ + unsigned long st_ctime_nsec; + unsigned int __unused4; + unsigned int __unused5; + }; + +#endif diff --git a/usr/include/arch/arm64/klibc/asmmacros.h b/usr/include/arch/arm64/klibc/asmmacros.h new file mode 100644 index 0000000..c298f66 --- /dev/null +++ b/usr/include/arch/arm64/klibc/asmmacros.h @@ -0,0 +1,11 @@ +/* + * usr/include/arch/arm64/klibc/asmmacros.h + * + * Assembly macros used by arm64 system call stubs + */ + +#ifndef _KLIBC_ASMMACROS_H +#define _KLIBC_ASMMACROS_H + + +#endif /* _KLIBC_ASMMACROS_H */ diff --git a/usr...
2013 Nov 11
5
[PATCH V2 0/3] Introduce arm64 support
Hello, Here is V2 of the arm64 support for klibc patch set. Notable changes since the original series: * fp regs dropped from setjmp/longjmp * chmod, lstat and stat re-implemented with *at functions. * open64 merged into open. As with the original, this series is to be applied against the latest klibc, just after 25a66fa README.klibc: update build information V2 has been tested on x86_64
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: