We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6f7da72 commit 228246fCopy full SHA for 228246f
src/unix/bsd/freebsdlike/freebsd/freebsd15/mod.rs
@@ -226,6 +226,8 @@ s! {
226
// This is normally "struct pwddesc".
227
/// Pointer to process paths info.
228
pub ki_pd: *mut c_void,
229
+ /// Address of the ext err msg place
230
+ pub ki_uerrmsg: *mut c_void,
231
pub ki_spareptrs: [*mut c_void; crate::KI_NSPARE_PTR],
232
pub ki_sparelongs: [c_long; crate::KI_NSPARE_LONG],
233
/// PS_* flags.
@@ -445,7 +447,7 @@ pub const KF_TYPE_EVENTFD: c_int = 13;
445
447
446
448
/// max length of devicename
449
pub const SPECNAMELEN: c_int = 255;
-pub const KI_NSPARE_PTR: usize = 5;
450
+pub const KI_NSPARE_PTR: usize = 4;
451
452
/// domainset policies
453
pub const DOMAINSET_POLICY_INVALID: c_int = 0;
0 commit comments