[breaking change] sigaction.sa_flags changed from c_ulong to c_int on 32-bit Android

This commit is contained in:
gnzlbg 2019-05-16 15:36:14 +02:00
parent 841b3eb016
commit 91ea0b21a3
1 changed files with 1 additions and 1 deletions

View File

@ -13,7 +13,7 @@ s! {
pub struct sigaction {
pub sa_sigaction: ::sighandler_t,
pub sa_mask: ::sigset_t,
pub sa_flags: ::c_ulong,
pub sa_flags: ::c_int,
pub sa_restorer: ::Option<extern fn()>,
}