Skip to content

freebsd15: Add ki_uerrmsg to struct kinfo_proc #4553

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion src/unix/bsd/freebsdlike/freebsd/freebsd15/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -226,6 +226,8 @@ s! {
// This is normally "struct pwddesc".
/// Pointer to process paths info.
pub ki_pd: *mut c_void,
/// Address of the ext err msg place
pub ki_uerrmsg: *mut c_void,
pub ki_spareptrs: [*mut c_void; crate::KI_NSPARE_PTR],
pub ki_sparelongs: [c_long; crate::KI_NSPARE_LONG],
/// PS_* flags.
Expand Down Expand Up @@ -445,7 +447,7 @@ pub const KF_TYPE_EVENTFD: c_int = 13;

/// max length of devicename
pub const SPECNAMELEN: c_int = 255;
pub const KI_NSPARE_PTR: usize = 5;
pub const KI_NSPARE_PTR: usize = 4;

/// domainset policies
pub const DOMAINSET_POLICY_INVALID: c_int = 0;
Expand Down
Loading