summaryrefslogtreecommitdiff
path: root/src/ucontext.rs
AgeCommit message (Collapse)Author
2022-11-06Reformat everythingAlex Saveau
Signed-off-by: Alex Saveau <saveau.alexandre@gmail.com>
2021-09-19Clippy cleanupAlan Somers
And this time, start running Clippy in CI
2020-06-27Fix an "unused import" warning on muslAlan Somers
2020-06-27misc clippy cleanupAlan Somers
2020-05-31Convert the crate to edition 2018Alan Somers
2019-09-03Replace most instances of mem::uninitialized with mem::MaybeUninitAlan Somers
Only two instances remain: * For the deprecated sys::socket::CmsgSpace::new. We should probably just remove that method. * For sys::termios::Termios::default_uninit. This will require some more thought. Fixes #1096
2019-06-09Add extra traits for all typesBryant Mairs
Derive Clone, Copy, Eq, Hash, and PartialEq for all types. Not all traits are supported by all types, which is why many are missing some.
2018-01-28Require Debug impls for all typesBryant Mairs
2017-12-04Stop reexporting `Errno` and its variantsJonas Schievink
cc #664 (unsure if this is everything needed)
2016-06-29musl target needs std::mem nowPhilipp Matthias Schaefer
2016-06-11Provide accessors to sigmask of UContext.Philipp Matthias Schaefer
2016-05-18Exclude UContext::get(),set() on musl, not available from libc.Justin Latimer
2016-03-14Add context module.Philipp Matthias Schaefer
The module wraps context handling related functions and structs.