mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-02-09 07:53:35 +00:00
- Emulator can now test the αcτµαlly pδrταblε εxεcµταblε bootloader - Whipped up a webserver named redbean. It services 150k requests per second on a single core. Bundling assets inside zip enables extremely fast serving for two reasons. The first is that zip central directory lookups go faster than stat() system calls. The second is that both zip and gzip content-encoding use DEFLATE, therefore, compressed responses can be served via the sendfile() system call which does an in-kernel copy directly from the zip executable structure. Also note that red bean zip executables can be deployed easily to all platforms, since these native executables work on Linux, Mac, BSD, and Windows. - Address sanitizer now works very well
16 lines
659 B
C
16 lines
659 B
C
#include "libc/mem/mem.h"
|
|
#include "third_party/dlmalloc/dlmalloc.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 g_dlmalloc->max_footprint;
|
|
}
|