Skip to content

Commit

Permalink
Merge pull request #4150 from cramertj/array-size-revert
Browse files Browse the repository at this point in the history
[0.2] Array size revert
  • Loading branch information
tgross35 authored Nov 26, 2024
2 parents 7b80739 + a1c30e3 commit 795e59a
Show file tree
Hide file tree
Showing 11 changed files with 23 additions and 19 deletions.
9 changes: 8 additions & 1 deletion libc-test/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -400,7 +400,8 @@ fn test_apple(target: &str) {
// FIXME: the array size has been changed since macOS 10.15 ([8] -> [7]).
("statfs", "f_reserved") => true,
("__darwin_arm_neon_state64", "__v") => true,

// MAXPATHLEN is too big for auto-derive traits on arrays.
("vnode_info_path", "vip_path") => true,
("ifreq", "ifr_ifru") => true,
("in6_ifreq", "ifr_ifru") => true,
("ifkpi", "ifk_data") => true,
Expand Down Expand Up @@ -2763,6 +2764,8 @@ fn test_freebsd(target: &str) {
("umutex", "m_owner") => true,
// c_has_waiters field is a volatile int32_t
("ucond", "c_has_waiters") => true,
// is PATH_MAX long but tests can't accept multi array as equivalent.
("kinfo_vmentry", "kve_path") => true,

// a_un field is a union
("Elf32_Auxinfo", "a_un") => true,
Expand Down Expand Up @@ -2791,6 +2794,10 @@ fn test_freebsd(target: &str) {
// Anonymous type.
("filestat", "next") => true,

// We ignore this field because we needed to use a hack in order to make rust 1.19
// happy...
("kinfo_proc", "ki_sparestrings") => true,

// `__sem_base` is a private struct field
("semid_ds", "__sem_base") => true,

Expand Down
4 changes: 3 additions & 1 deletion src/unix/bsd/apple/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -939,7 +939,9 @@ s! {

pub struct vnode_info_path {
pub vip_vi: vnode_info,
pub vip_path: [::c_char; ::MAXPATHLEN as usize],
// Normally it's `vip_path: [::c_char; MAXPATHLEN]` but because libc supports an old rustc
// version, we go around this limitation like this.
pub vip_path: [[::c_char; 32]; 32],
}

pub struct proc_vnodepathinfo {
Expand Down
2 changes: 1 addition & 1 deletion src/unix/bsd/freebsdlike/dragonfly/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -517,7 +517,7 @@ s_no_extra_traits! {
pub mc_ownedfp: ::c_uint,
__reserved: ::c_uint,
__unused: [::c_uint; 8],
pub mc_fpregs: [::c_uint; 256],
pub mc_fpregs: [[::c_uint; 8]; 32],
}

pub struct ucontext_t {
Expand Down
2 changes: 1 addition & 1 deletion src/unix/bsd/freebsdlike/freebsd/freebsd11/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ s! {
/// More thread name.
pub ki_moretdname: [::c_char; ::MAXCOMLEN - ::TDNAMLEN + 1],
/// Spare string space.
pub ki_sparestrings: [::c_char; 46],
pub ki_sparestrings: [[::c_char; 23]; 2], // little hack to allow PartialEq
/// Spare room for growth.
pub ki_spareints: [::c_int; ::KI_NSPARE_INT],
/// Which cpu we are on.
Expand Down
2 changes: 1 addition & 1 deletion src/unix/bsd/freebsdlike/freebsd/freebsd12/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ s! {
/// More thread name.
pub ki_moretdname: [::c_char; ::MAXCOMLEN - ::TDNAMLEN + 1],
/// Spare string space.
pub ki_sparestrings: [::c_char; 46],
pub ki_sparestrings: [[::c_char; 23]; 2], // little hack to allow PartialEq
/// Spare room for growth.
pub ki_spareints: [::c_int; ::KI_NSPARE_INT],
/// Controlling tty dev.
Expand Down
2 changes: 1 addition & 1 deletion src/unix/bsd/freebsdlike/freebsd/freebsd13/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ s! {
/// More thread name.
pub ki_moretdname: [::c_char; ::MAXCOMLEN - ::TDNAMLEN + 1],
/// Spare string space.
pub ki_sparestrings: [::c_char; 46],
pub ki_sparestrings: [[::c_char; 23]; 2], // little hack to allow PartialEq
/// Spare room for growth.
pub ki_spareints: [::c_int; ::KI_NSPARE_INT],
/// Controlling tty dev.
Expand Down
2 changes: 1 addition & 1 deletion src/unix/bsd/freebsdlike/freebsd/freebsd14/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ s! {
/// More thread name.
pub ki_moretdname: [::c_char; ::MAXCOMLEN - ::TDNAMLEN + 1],
/// Spare string space.
pub ki_sparestrings: [::c_char; 46],
pub ki_sparestrings: [[::c_char; 23]; 2], // little hack to allow PartialEq
/// Spare room for growth.
pub ki_spareints: [::c_int; ::KI_NSPARE_INT],
/// Controlling tty dev.
Expand Down
2 changes: 1 addition & 1 deletion src/unix/bsd/freebsdlike/freebsd/freebsd15/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ s! {
/// More thread name.
pub ki_moretdname: [::c_char; ::MAXCOMLEN - ::TDNAMLEN + 1],
/// Spare string space.
pub ki_sparestrings: [::c_char; 46],
pub ki_sparestrings: [[::c_char; 23]; 2], // little hack to allow PartialEq
/// Spare room for growth.
pub ki_spareints: [::c_int; ::KI_NSPARE_INT],
/// Controlling tty dev.
Expand Down
11 changes: 3 additions & 8 deletions src/unix/bsd/freebsdlike/freebsd/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -457,7 +457,7 @@ s! {
_kve_is_spare: [::c_int; 8],
#[cfg(freebsd11)]
_kve_is_spare: [::c_int; 12],
pub kve_path: [::c_char; ::PATH_MAX as usize],
pub kve_path: [[::c_char; 32]; 32],
}

pub struct __c_anonymous_filestat {
Expand Down Expand Up @@ -1144,7 +1144,7 @@ s! {
pub sinfo_assoc_id: ::sctp_assoc_t,
pub sinfo_keynumber: u16,
pub sinfo_keynumber_valid: u16,
pub __reserve_pad: [u8; SCTP_ALIGN_RESV_PAD],
pub __reserve_pad: [[u8; 23]; 4],
}

pub struct sctp_extrcvinfo {
Expand All @@ -1164,7 +1164,7 @@ s! {
pub serinfo_next_ppid: u32,
pub sinfo_keynumber: u16,
pub sinfo_keynumber_valid: u16,
pub __reserve_pad: [u8; SCTP_ALIGN_RESV_PAD_SHORT],
pub __reserve_pad: [[u8; 19]; 4],
}

pub struct sctp_sndinfo {
Expand Down Expand Up @@ -4865,11 +4865,6 @@ pub const SCTP_ASSOC_RESET_FAILED: ::c_int = 0x0008;
pub const SCTP_STREAM_CHANGE_DENIED: ::c_int = 0x0004;
pub const SCTP_STREAM_CHANGE_FAILED: ::c_int = 0x0008;

// sctp_uio.h

pub const SCTP_ALIGN_RESV_PAD: usize = 92;
pub const SCTP_ALIGN_RESV_PAD_SHORT: usize = 76;

pub const KENV_DUMP_LOADER: ::c_int = 4;
pub const KENV_DUMP_STATIC: ::c_int = 5;

Expand Down
2 changes: 1 addition & 1 deletion src/unix/bsd/freebsdlike/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,7 @@ s! {

pub struct accept_filter_arg {
pub af_name: [::c_char; 16],
af_arg: [::c_char; 240],
af_arg: [::c_char; 256 - 16],
}

pub struct ptrace_io_desc {
Expand Down
4 changes: 2 additions & 2 deletions src/unix/bsd/netbsdlike/netbsd/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -520,7 +520,7 @@ s! {

pub struct accept_filter_arg {
pub af_name: [::c_char; 16],
pub af_arg: [::c_char; 256 - 16],
af_arg: [::c_char; 256 - 16],
}

pub struct ki_sigset_t {
Expand Down Expand Up @@ -671,7 +671,7 @@ s! {
pub kve_vn_rdev: u64,
pub kve_vn_type: u32,
pub kve_vn_mode: u32,
pub kve_path: [::c_char; ::PATH_MAX as usize],
pub kve_path: [[::c_char; 32]; 32],
}

pub struct __c_anonymous_posix_spawn_fae_open {
Expand Down

0 comments on commit 795e59a

Please sign in to comment.