Haiku: Use common thread set_name stub

This commit is contained in:
Alexander von Gluck IV 2016-09-26 00:41:24 -05:00
parent 7e91b86707
commit 7c34d9c144

View File

@ -115,14 +115,12 @@ impl Thread {
name.as_ptr() as *mut libc::c_void);
}
}
#[cfg(any(target_env = "newlib", target_os = "solaris", target_os = "emscripten"))]
#[cfg(any(target_env = "newlib",
target_os = "solaris",
target_os = "haiku",
target_os = "emscripten"))]
pub fn set_name(_name: &CStr) {
// Newlib, Illumos and Emscripten have no way to set a thread name.
}
#[cfg(target_os = "haiku")]
pub fn set_name(_name: &CStr) {
// Haiku has no way to set a thread name.
// Newlib, Illumos, Haiku, and Emscripten have no way to set a thread name.
}
pub fn sleep(dur: Duration) {