mimalloc
mimalloc copied to clipboard
why mi_bin() return MI_BIN_HUGE if wsize > MI_MEDIUM_OBJ_WSIZE_MAX
I have questions about function mi_bin()
else if (wsize > MI_MEDIUM_OBJ_WSIZE_MAX) { bin = MI_BIN_HUGE; }
why it returns MI_BIN_HUGE if wsize > MI_MEDIUM_OBJ_WSIZE_MAX, I think wsize should compares with MI_LARGE_OBJ_WSIZE_MAX?