You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Create a root region at the start of the heap block
550
+
// Unfortunately some other user has sbrk()ed to acquire a slab of memory for themselves, and now the sbrk()ed
551
+
// memory we got is not contiguous with our previous managed root regions.
552
+
// So create a new root region at the start of the sbrk()ed heap block.
548
553
#ifdefEMMALLOC_VERBOSE
549
-
MAIN_THREAD_ASYNC_EM_ASM(err('claim_more_memory: creating new root region'));
554
+
MAIN_THREAD_ASYNC_EM_ASM(err('claim_more_memory: sbrk() returned a disjoint region to last root region, some external code must have sbrk()ed outside emmalloc(). Creating a new root region'));
0 commit comments