Skip to content

Commit c2d23ee

Browse files
committed
Update _MC_FLAG_MASK for _MC_HASTLSBASE
1 parent 950241d commit c2d23ee

File tree

1 file changed

+2
-1
lines changed
  • src/unix/bsd/freebsdlike/freebsd/x86_64

1 file changed

+2
-1
lines changed

src/unix/bsd/freebsdlike/freebsd/x86_64/mod.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -327,7 +327,8 @@ pub const MINSIGSTKSZ: size_t = 2048; // 512 * 4
327327
pub const _MC_HASSEGS: u32 = 0x1;
328328
pub const _MC_HASBASES: u32 = 0x2;
329329
pub const _MC_HASFPXSTATE: u32 = 0x4;
330-
pub const _MC_FLAG_MASK: u32 = _MC_HASSEGS | _MC_HASBASES | _MC_HASFPXSTATE;
330+
pub const _MC_HASTLSBASE: u32 = 0x8;
331+
pub const _MC_FLAG_MASK: u32 = _MC_HASSEGS | _MC_HASBASES | _MC_HASFPXSTATE | _MC_HASTLSBASE;
331332

332333
pub const _MC_FPFMT_NODEV: c_long = 0x10000;
333334
pub const _MC_FPFMT_XMM: c_long = 0x10002;

0 commit comments

Comments
 (0)