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
// malloc/malloc.hstructmallinfo
{
int arena; /* non-mmapped space allocated from system */int ordblks; /* number of free chunks */int smblks; /* number of fastbin blocks */int hblks; /* number of mmapped regions */int hblkhd; /* space in mmapped regions */int usmblks; /* always 0, preserved for backwards compatibility */int fsmblks; /* space available in freed fastbin blocks */int uordblks; /* total allocated space */int fordblks; /* total free space */int keepcost; /* top-most, releasable (via malloc_trim) space */
};
The text was updated successfully, but these errors were encountered:
The text was updated successfully, but these errors were encountered: