Skip to content

Commit 87f7a6a

Browse files
committed
Auto merge of #462 - semarie:openbsd-i686-correct, r=alexcrichton
i686-unknown-openbsd libc correction Now I had been able to run testsuite on i686-unknown-openbsd, here a batch of corrections. - `suseconds_t` is `c_long` (`i64` or `i32` depending the arch) - struct siginfo_t padding adjustment (the pointer `si_addr` makes the pad to change depending pointer size) I tested the PR on i686-unknown-openbsd and x86_64-unknown-openbsd.
2 parents 94848c1 + 2126c45 commit 87f7a6a

File tree

1 file changed

+4
-1
lines changed
  • src/unix/bsd/netbsdlike/openbsdlike

1 file changed

+4
-1
lines changed

src/unix/bsd/netbsdlike/openbsdlike/mod.rs

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
pub type clock_t = i64;
2-
pub type suseconds_t = i64;
2+
pub type suseconds_t = ::c_long;
33
pub type dev_t = i32;
44
pub type sigset_t = ::c_uint;
55
pub type blksize_t = ::int32_t;
@@ -108,6 +108,9 @@ s! {
108108
pub si_code: ::c_int,
109109
pub si_errno: ::c_int,
110110
pub si_addr: *mut ::c_char,
111+
#[cfg(target_pointer_width = "32")]
112+
__pad: [u8; 112],
113+
#[cfg(target_pointer_width = "64")]
111114
__pad: [u8; 108],
112115
}
113116

0 commit comments

Comments
 (0)