rollup merge of #20321: epall/patch-1

In f436f9ca2, the Send and Sync traits became `unsafe`. They were updated for `target_arch = x86` and others, but `mips` was missed.
This commit is contained in:
Alex Crichton
2014-12-30 16:26:08 -08:00

View File

@@ -214,8 +214,8 @@ mod signal {
sa_resv: [libc::c_int, ..1], sa_resv: [libc::c_int, ..1],
} }
impl ::kinds::Send for sigaction { } unsafe impl ::kinds::Send for sigaction { }
impl ::kinds::Sync for sigaction { } unsafe impl ::kinds::Sync for sigaction { }
#[repr(C)] #[repr(C)]
pub struct sigset_t { pub struct sigset_t {