summaryrefslogtreecommitdiff
path: root/src/sys/syscall.rs
AgeCommit message (Collapse)Author
2017-08-27Remove syscall module.Bryant Mairs
This module merely contained FFI declarations, and only enough to implement memfd_create() and pivot_root() wrapper functions in nix. Since these declarations are redundant with equivalent FFI declarations in libc, we'll remove them here. In the future, any syscall-related wrapper function will be implemented directly and utilize libc for FFI declarations as we cannot generically expose a type-safe `syscall()` because of its variadic argument list.
2017-07-08Support syscalls on mips64Bryant Mairs
2017-07-08Enable syscalls on s390xBryant Mairs
2017-06-19Support powerpc64Luca Barbato
The test_ioctl values are computed using ioctl-test.c
2017-04-09Added missing syscalls for powerpcZac Berkowitz
2016-03-07Add support for MIPS targetsGabriele Svelto
Closes #300
2016-01-15add aarch64 supportBrian Martin
2015-08-25Add memfd functionalityDavid Henningsson
2015-03-13Amend some files to make it compile on arm-linux-androideabi.kennytm
2015-02-25Large cleanup, mostly of socket functionsCarl Lerche