Skip to content

Latest commit

 

History

History
18 lines (13 loc) · 359 Bytes

README.md

File metadata and controls

18 lines (13 loc) · 359 Bytes

faf-syscall

syscall macro

  • Fast
  • Minimalist
  • Dependency-free
  • Linux
  • #![no_std]
  • Stable (not nightly)

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.