summaryrefslogtreecommitdiff
path: root/src/sys/utsname.rs
AgeCommit message (Collapse)Author
2021-09-04Document more thingsAlan Somers
Also, test rustdoc in CI, and demote missing_docs from a deny to a warning (but still deny it in CI).
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-20Remove unnecessary impl ClonesBryant Mairs
2017-12-20Remove unnecessary lifetime annotationsBryant Mairs
2017-08-21Expose utsname on all platformsBryant Mairs
2017-08-16Use libc::uname and libc::utsnameBryant Mairs
2015-04-03'derive(Copy)' needs Clone nowFlorian Hartwig
2015-02-20Fix a null bug in uname bindingCarl Lerche
2015-02-20Use new ffi:CStr instead of c_str_to_bytes_with_nulSebastian Lauwers
2015-01-13changed uint and int to usize and isize respectivelyRick Richardson
2015-01-07more cstr falloutRick Richardson
2015-01-04Fix a few remaining deprecation noticesCarl Lerche
2015-01-02Track rust masterValerii Hiora
- Updated array syntax - task_rng -> thread_rng
2014-12-10Fallout of Copy becoming opt-in.Victor Berger
2014-10-10Update static->constTilde Engineering
2014-10-08Bind x86 linuxTilde Engineering
2014-08-25Tweaks + fix accept4Carl Lerche
2014-08-20Start binding DarwinCarl Lerche
2014-08-17Add unameCarl Lerche