mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-02-14 10:18:02 +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
15 lines
557 B
C
15 lines
557 B
C
#include "libc/limits.h"
|
|
#include "libc/mem/mem.h"
|
|
#include "third_party/dlmalloc/dlmalloc.h"
|
|
|
|
/**
|
|
* Returns the number of bytes that the heap is allowed to obtain from
|
|
* the system, returning the last value returned by
|
|
* malloc_set_footprint_limit, or the maximum size_t value if never set.
|
|
* The returned value reflects a permission. There is no guarantee that
|
|
* this number of bytes can actually be obtained from the system.
|
|
*/
|
|
size_t malloc_footprint_limit(void) {
|
|
size_t maf = g_dlmalloc->footprint_limit;
|
|
return maf == 0 ? SIZE_MAX : maf;
|
|
}
|