linux-syscalls 0.4.0

A library to easily invoke linux system calls.
Documentation
1
2
3
4
5
6
7
8
9
10
11
use core::cell::UnsafeCell;

#[non_exhaustive]
pub struct Vdso {}

unsafe impl Send for Vdso {}
unsafe impl Sync for Vdso {}

pub(crate) static mut VDSO: UnsafeCell<Vdso> = UnsafeCell::new(Vdso {});

pub(crate) fn init() {}