Skip to content

Commit

Permalink
uclibc/mips: fixed SA_* mismatched types
Browse files Browse the repository at this point in the history
Signed-off-by: Xiaobo Liu <cppcoffee@gmail.com>
  • Loading branch information
cppcoffee authored and tgross35 committed Nov 20, 2024
1 parent cffbad3 commit e8f54bb
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/unix/linux_like/linux/uclibc/mips/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@ pub const ECOMM: ::c_int = 70;
pub const EPROTO: ::c_int = 71;
pub const EDOTDOT: ::c_int = 73;

pub const SA_NODEFER: ::c_int = 0x40000000;
pub const SA_RESETHAND: ::c_int = 0x80000000;
pub const SA_RESTART: ::c_int = 0x10000000;
pub const SA_NOCLDSTOP: ::c_int = 0x00000001;
pub const SA_NODEFER: ::c_uint = 0x40000000;
pub const SA_RESETHAND: ::c_uint = 0x80000000;
pub const SA_RESTART: ::c_uint = 0x10000000;
pub const SA_NOCLDSTOP: ::c_uint = 0x00000001;

pub const EPOLL_CLOEXEC: ::c_int = 0x80000;

Expand Down

0 comments on commit e8f54bb

Please sign in to comment.