about summary refs log tree commit diff
path: root/src/libstd/sys/unix/helper_signal.rs
AgeCommit message (Collapse)AuthorLines
2015-04-21Remove unused filesTamir Duberstein-31/+0
Looks like these were missed in bf4e77d.
2015-03-31std: Clean out #[deprecated] APIsAlex Crichton-3/+3
This commit cleans out a large amount of deprecated APIs from the standard library and some of the facade crates as well, updating all users in the compiler and in tests as it goes along.
2015-03-20don't use Result::ok just to be able to use unwrap/unwrap_orOliver Schneider-1/+1
2015-03-13Fallout of std::old_io deprecationAlex Crichton-0/+2
2014-11-17Fix fallout from coercion removalNick Cameron-1/+1
2014-11-08Runtime removal: refactor helper threadsAaron Turon-0/+29
This patch continues the runtime removal by moving libnative::io::helper_thread into sys::helper_signal and sys_common::helper_thread Because this eliminates APIs in `libnative` and `librustrt`, it is a: [breaking-change] This functionality is likely to be available publicly, in some form, from `std` in the future.