1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
use libc; #[cfg(not(target_env = "musl"))] use {Errno, Result}; #[cfg(not(target_env = "musl"))] use std::mem; #[derive(Clone, Copy)] pub struct UContext { context: libc::ucontext_t, } impl UContext { #[cfg(not(target_env = "musl"))] pub fn get() -> Result<UContext> { let mut context: libc::ucontext_t = unsafe { mem::uninitialized() }; let res = unsafe { libc::getcontext(&mut context as *mut libc::ucontext_t) }; Errno::result(res).map(|_| UContext { context: context }) } #[cfg(not(target_env = "musl"))] pub fn set(&self) -> Result<()> { let res = unsafe { libc::setcontext(&self.context as *const libc::ucontext_t) }; Errno::result(res).map(drop) } }