mirror of
https://github.com/rust-lang/rust.git
synced 2024-12-03 20:23:59 +00:00
Fix impl of Send and Sync for mips
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:
parent
fea5aa656f
commit
011b5ca1bd
@ -214,8 +214,8 @@ mod signal {
|
||||
sa_resv: [libc::c_int, ..1],
|
||||
}
|
||||
|
||||
impl ::kinds::Send for sigaction { }
|
||||
impl ::kinds::Sync for sigaction { }
|
||||
unsafe impl ::kinds::Send for sigaction { }
|
||||
unsafe impl ::kinds::Sync for sigaction { }
|
||||
|
||||
#[repr(C)]
|
||||
pub struct sigset_t {
|
||||
|
Loading…
Reference in New Issue
Block a user