We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cc1c72a commit c00538aCopy full SHA for c00538a
libmimalloc-sys/c_src/mimalloc
libmimalloc-sys/src/extended.rs
@@ -546,7 +546,7 @@ pub const mi_option_max_warnings: mi_option_t = 20;
546
pub const mi_option_max_segment_reclaim: mi_option_t = 21;
547
548
/// Last option.
549
-pub const _mi_option_last: mi_option_t = 29;
+pub const _mi_option_last: mi_option_t = 37;
550
551
extern "C" {
552
// Note: mi_option_{enable,disable} aren't exposed because they're redundant
@@ -657,6 +657,8 @@ pub struct mi_heap_area_t {
657
pub block_size: usize,
658
/// Size in bytes of a full block including padding and metadata.
659
pub full_block_size: usize,
660
+ /// Heap tag associated with this area
661
+ pub heap_tag: i32,
662
}
663
664
/// Visitor function passed to [`mi_heap_visit_blocks`]
0 commit comments