Skip to content

Commit

Permalink
Fix impl of Send and Sync for mips
Browse files Browse the repository at this point in the history
In f436f9c, the Send and Sync traits became `unsafe`. They were updated for `target_arch = x86` and others, but `mips` was missed.
  • Loading branch information
epall committed Dec 30, 2014
1 parent fea5aa6 commit 011b5ca
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/libstd/sys/unix/c.rs
Expand Up @@ -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 {
Expand Down

0 comments on commit 011b5ca

Please sign in to comment.