mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-05-24 06:12:27 +00:00
Initial import
This commit is contained in:
commit
c91b3c5006
14915 changed files with 590219 additions and 0 deletions
14
third_party/dlmalloc/malloc_max_footprint.c
vendored
Normal file
14
third_party/dlmalloc/malloc_max_footprint.c
vendored
Normal file
|
@ -0,0 +1,14 @@
|
|||
#include "third_party/dlmalloc/dlmalloc.h"
|
||||
#include "libc/mem/mem.h"
|
||||
|
||||
/**
|
||||
* Returns the maximum number of bytes obtained from the system. This
|
||||
* value will be greater than current footprint if deallocated space has
|
||||
* been reclaimed by the system. The peak number of bytes allocated by
|
||||
* malloc, realloc etc., is less than this value. Unlike mallinfo, this
|
||||
* function returns only a precomputed result, so can be called
|
||||
* frequently to monitor memory consumption. Even if locks are otherwise
|
||||
* defined, this function does not use them, so results might not be up
|
||||
* to date.
|
||||
*/
|
||||
size_t malloc_max_footprint(void) { return gm->max_footprint; }
|
Loading…
Add table
Add a link
Reference in a new issue