Skip to content

Commit

Permalink
changes from feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
devnexen committed Oct 22, 2023
1 parent 9baba9e commit 047d5b2
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 5 deletions.
2 changes: 2 additions & 0 deletions libc-test/semver/openbsd.txt
Expand Up @@ -766,6 +766,8 @@ SF_IMMUTABLE
SF_SETTABLE
SHM_R
SHM_W
SI_MAXSZ
SI_PAD
SIGEMT
SIGINFO
SIGIO
Expand Down
14 changes: 9 additions & 5 deletions src/unix/bsd/netbsdlike/openbsd/mod.rs
Expand Up @@ -552,9 +552,9 @@ impl siginfo_t {
#[repr(C)]
struct siginfo_timer {
_si_signo: ::c_int,
_si_errno: ::c_int,
_si_code: ::c_int,
__pad1: ::c_int,
_si_errno: ::c_int,
_pad: [::c_int; SI_PAD],
_pid: ::pid_t,
}
(*(self as *const siginfo_t as *const siginfo_timer))._pid
Expand All @@ -564,9 +564,9 @@ impl siginfo_t {
#[repr(C)]
struct siginfo_timer {
_si_signo: ::c_int,
_si_errno: ::c_int,
_si_code: ::c_int,
__pad1: ::c_int,
_si_errno: ::c_int,
_pad: [::c_int; SI_PAD],
_pid: ::pid_t,
_uid: ::uid_t,
}
Expand All @@ -577,8 +577,9 @@ impl siginfo_t {
#[repr(C)]
struct siginfo_timer {
_si_signo: ::c_int,
_si_errno: ::c_int,
_si_code: ::c_int,
_si_errno: ::c_int,
_pad: [::c_int; SI_PAD],
_pid: ::pid_t,
_uid: ::uid_t,
value: ::sigval,
Expand Down Expand Up @@ -1609,6 +1610,9 @@ pub const NTFS_MFLAG_ALLNAMES: ::c_int = 0x2;

pub const TMPFS_ARGS_VERSION: ::c_int = 1;

pub const SI_MAXSZ: ::size_t = 128;
pub const SI_PAD: ::size_t = (SI_MAXSZ / ::mem::size_of::<::c_int>()) - 3;

pub const MAP_STACK: ::c_int = 0x4000;
pub const MAP_CONCEAL: ::c_int = 0x8000;

Expand Down

0 comments on commit 047d5b2

Please sign in to comment.