mir-linux-kernel ~update-and-add-riscv
Linux system call numbers for different architectures
To use this package, run the following command in your project's root directory:
Manual usage
Put the following dependency into your project's dependences section:
mir-linux-kernel
Linux kernel headers
Motivating Example
Linux 3.17 added the getrandom
syscall. Using it instead of /dev/[u]?random
was a win. But we didn't think about all of the architectures that people might try building our library on, and soon we got a report from a user that our latest and greatest release was failing to compile on Raspberry Pi.
Example Usage
import mir.linux._asm.unistd: NR_getrandom;
/*
* If the GRND_NONBLOCK flag is set, then
* getrandom() does not block in these cases, but instead
* immediately returns -1 with errno set to EAGAIN.
*/
private ptrdiff_t genRandomImplSysNonBlocking()(scope void* ptr, size_t len) @nogc nothrow @system
{
return syscall(NR_getrandom, cast(size_t) ptr, len, GRND_NONBLOCK);
}
Notes
Currently we have syscall numbers for:
- x86
- AMD64 / x86-64
- ARM
- ARM64 / AArch64
- PPC
- PPC64
- IA64
- MIPS O32
- MIPS N32
- MIPS64
- SPARC
- SPARC64
- S390
- SystemZ
- HP PA-RISC, 32-bit
- HP PA-RISC, 64-bit
- SuperH
- Alpha
- RISC-V 32-bit
- RISC-V 64-bit
This compares favorably to the list of architectures supported by the various D compilers, but currently our test suite only has x86 and x86-64 machines in it which is how we got into this mess in the first place. Caveat lector. We'll try to fix problems as we discover them and the set of files included may grow as we need more things.
- Registered by Ilia Ki
- ~update-and-add-riscv released 4 years ago
- libmir/mir-linux-kernel
- BSL-1.0
- Copyright © 2017, Nathan Sashihara
- Authors:
- Dependencies:
- none
- Versions:
-
1.2.1 2021-Oct-22 1.2.0 2020-May-16 1.1.0 2020-Mar-30 1.0.1 2018-Aug-04 1.0.0 2017-Nov-05 - Download Stats:
-
-
310 downloads today
-
2120 downloads this week
-
9388 downloads this month
-
1525534 downloads total
-
- Score:
- 4.5
- Short URL:
- mir-linux-kernel.dub.pm