Skip to content

Commit

Permalink
structs nlmsghdr, nlmsgerr and nlattr added to linux arm and x86 musl…
Browse files Browse the repository at this point in the history
… targets
  • Loading branch information
ru committed Feb 7, 2020
1 parent c092e6b commit 6347222
Show file tree
Hide file tree
Showing 3 changed files with 54 additions and 0 deletions.
18 changes: 18 additions & 0 deletions src/unix/linux_like/linux/musl/b32/arm/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,24 @@ s! {
pub f_namemax: ::c_ulong,
__f_spare: [::c_int; 6],
}

pub struct nlmsghdr {
pub nlmsg_len: u32,
pub nlmsg_type: u16,
pub nlmsg_flags: u16,
pub nlmsg_seq: u32,
pub nlmsg_pid: u32,
}

pub struct nlmsgerr {
pub error: ::c_int,
pub msg: nlmsghdr,
}

pub struct nlattr {
pub nla_len: u16,
pub nla_type: u16,
}
}

pub const SIGSTKSZ: ::size_t = 8192;
Expand Down
18 changes: 18 additions & 0 deletions src/unix/linux_like/linux/musl/b32/x86/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -154,6 +154,24 @@ s! {
pub f_namemax: ::c_ulong,
__f_spare: [::c_int; 6],
}

pub struct nlmsghdr {
pub nlmsg_len: u32,
pub nlmsg_type: u16,
pub nlmsg_flags: u16,
pub nlmsg_seq: u32,
pub nlmsg_pid: u32,
}

pub struct nlmsgerr {
pub error: ::c_int,
pub msg: nlmsghdr,
}

pub struct nlattr {
pub nla_len: u16,
pub nla_type: u16,
}
}

s_no_extra_traits! {
Expand Down
18 changes: 18 additions & 0 deletions src/unix/linux_like/linux/musl/b64/x86_64/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,24 @@ s! {
__reserved: [::c_long; 3],
}

pub struct nlmsghdr {
pub nlmsg_len: u32,
pub nlmsg_type: u16,
pub nlmsg_flags: u16,
pub nlmsg_seq: u32,
pub nlmsg_pid: u32,
}

pub struct nlmsgerr {
pub error: ::c_int,
pub msg: nlmsghdr,
}

pub struct nlattr {
pub nla_len: u16,
pub nla_type: u16,
}

pub struct user_regs_struct {
pub r15: ::c_ulong,
pub r14: ::c_ulong,
Expand Down

0 comments on commit 6347222

Please sign in to comment.