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.
_MC_FLAG_MASK
_MC_HASTLSBASE
1 parent 950241d commit c2d23eeCopy full SHA for c2d23ee
src/unix/bsd/freebsdlike/freebsd/x86_64/mod.rs
@@ -327,7 +327,8 @@ pub const MINSIGSTKSZ: size_t = 2048; // 512 * 4
327
pub const _MC_HASSEGS: u32 = 0x1;
328
pub const _MC_HASBASES: u32 = 0x2;
329
pub const _MC_HASFPXSTATE: u32 = 0x4;
330
-pub const _MC_FLAG_MASK: u32 = _MC_HASSEGS | _MC_HASBASES | _MC_HASFPXSTATE;
+pub const _MC_HASTLSBASE: u32 = 0x8;
331
+pub const _MC_FLAG_MASK: u32 = _MC_HASSEGS | _MC_HASBASES | _MC_HASFPXSTATE | _MC_HASTLSBASE;
332
333
pub const _MC_FPFMT_NODEV: c_long = 0x10000;
334
pub const _MC_FPFMT_XMM: c_long = 0x10002;
0 commit comments