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:
commit
d1a19e8303
1 changed files with 2 additions and 2 deletions
|
@ -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…
Add table
Reference in a new issue