Crates.io | faf-syscall |
lib.rs | faf-syscall |
version | 3.0.3 |
source | src |
created_at | 2021-12-07 21:46:19.726005 |
updated_at | 2022-03-13 20:53:46.554198 |
description | Raw (asm), fast system calls for linux with no dependencies (no_std) |
homepage | https://github.com/errantmind/faf-syscall |
repository | https://github.com/errantmind/faf-syscall |
max_upload_size | |
id | 494110 |
size | 6,629 |
syscall macro
#![no_std]
This was originally developed for the faf web server
Usage use faf_syscall::sys_call;
let result = sys_call!(SYS_NUM, arg1, arg2, ...)
Returns result as a positive isize or errno as a negative isize.