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 c3bea2f
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 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; 29],
_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; 29],
_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; 29],
_pid: ::pid_t,
_uid: ::uid_t,
value: ::sigval,
Expand Down

0 comments on commit c3bea2f

Please sign in to comment.