about summary refs log tree commit diff
path: root/arch/arm/bits/syscall.h
Commit message (Collapse)AuthorAgeFilesLines
* add syscall numbers for the new kcmp and finit_module syscallsSzabolcs Nagy2013-04-011-0/+4
| | | | and remove syscall todos from microblaze
* syscall organization overhaulRich Felker2012-09-081-191/+0
| | | | | | | | | | | | now public syscall.h only exposes __NR_* and SYS_* constants and the variadic syscall function. no macros or inline functions, no __syscall_ret or other internal details, no 16-/32-bit legacy syscall renaming, etc. this logic has all been moved to src/internal/syscall.h with the arch-specific parts in arch/$(ARCH)/syscall_arch.h, and the amount of arch-specific stuff has been reduced to a minimum. changes still need to be reviewed/double-checked. minimal testing on i386 and mips has already been performed.
* avoid "inline" in public headers for strict c89 compatibilityRich Felker2012-09-021-7/+7
| | | | | | | | | while musl itself requires a c99 compiler, some applications insist on being compiled with c89 compilers, and use of "inline" in the headers was breaking them. much of this had been avoided already by just skipping the inline keyword in pre-c99 compilers or modes, but this new unified solution is cleaner and may/should result in better code generation in the default gcc configuration.
* add defines for number of sigset_t bytes syscalls expectRich Felker2012-08-091-0/+2
| | | | yet another gratuitous mips incompatibility...
* make arm syscalls (still non-inline) more efficientRich Felker2012-07-081-6/+6
| | | | no need to pass zero for unused arguments; just omit them.
* update syscall defs to latest kernel onesRich Felker2012-06-231-0/+4
| | | | patch submitted by Kristian L. <email@thexception.net>
* fix arm syscall.h to reflect which syscalls actually exist (on EABI)Rich Felker2012-05-241-22/+0
|
* update syscalls with off_t arguments to handle argument alignment, if neededRich Felker2011-09-211-1/+2
| | | | | | the arm syscall abi requires 64-bit arguments to be aligned on an even register boundary. these new macros facilitate meeting the abi requirement without imposing significant ugliness on the code.
* initial commit of the arm portRich Felker2011-09-181-0/+876
this port assumes eabi calling conventions, eabi linux syscall convention, and presence of the kernel helpers at 0xffff0f?0 needed for threads support. otherwise it makes very few assumptions, and the code should work even on armv4 without thumb support, as well as on systems with thumb interworking. the bits headers declare this a little endian system, but as far as i can tell the code should work equally well on big endian. some small details are probably broken; so far, testing has been limited to qemu/aboriginal linux.