#linux #ffi #system #manpage #statx

statx-sys

Bindings to statx syscall implemented by syscall

7 unstable releases

0.4.1 Sep 2, 2022
0.4.0 Oct 27, 2019
0.3.0 Oct 3, 2019
0.2.1 Jun 17, 2019
0.1.1 Apr 7, 2019

#885 in Unix APIs

MIT license

9KB
122 lines

statx-sys

Bindings to statx syscall which is available in Linux kernel 4.11 , implemented by syscall syscall.

Man page of statx: http://man7.org/linux/man-pages/man2/statx.2.html

statx related fn and structs are first included in libc 0.2.56 . And this crate provide an alternative which is compatible to libc 0.2.3 , which is the lowest version with support for syscall. For system without statx support, the fn statx of this crate will safely return ENOSYS instead of a compile-time link error.


lib.rs:

Bindings to statx syscall.

Note that statx() was added to Linux in kernel 4.11 .

See also

http://man7.org/linux/man-pages/man2/statx.2.html

Dependencies

~42KB