about summary refs log tree commit diff
path: root/src/libstd/sys/vxworks/os.rs
AgeCommit message (Collapse)AuthorLines
2020-07-27mv std libs to library/mark-316/+0
2020-01-10make use of pointer::is_nullLzu Tao-4/+3
2020-01-02Use drop instead of the toilet closure `|_| ()`Lzu Tao-2/+2
2019-12-24Deprecate Error::description for realDavid Tolnay-0/+1
`description` has been documented as soft-deprecated since 1.27.0 (17 months ago). There is no longer any reason to call it or implement it. This commit: - adds #[rustc_deprecated(since = "1.41.0")] to Error::description; - moves description (and cause, which is also deprecated) below the source and backtrace methods in the Error trait; - reduces documentation of description and cause to take up much less vertical real estate in rustdocs, while preserving the example that shows how to render errors without needing to call description; - removes the description function of all *currently unstable* Error impls in the standard library; - marks #[allow(deprecated)] the description function of all *stable* Error impls in the standard library; - replaces miscellaneous uses of description in example code and the compiler.
2019-12-22Format the worldMark Rousskov-43/+50
2019-11-22ensure that access to the environment is synchronizedBaoshanPang-7/+12
2019-11-04Implemented the home_dir for VxWorksUmesh Kalappa-1/+2
2019-09-20No home directory on vxWorksBaoshan Pang-22/+1
2019-07-16Add supporting for vxWorksBaoshan Pang-0/+324
r? @alexcrichton