MCPcopy Create free account
hub / github.com/emscripten-core/emscripten / dlvalloc

Function dlvalloc

system/lib/dlmalloc.c:5393–5398  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

5391}
5392
5393void* dlvalloc(size_t bytes) {
5394 size_t pagesz;
5395 ensure_initialization();
5396 pagesz = mparams.page_size;
5397 return dlmemalign(pagesz, bytes);
5398}
5399
5400void* dlpvalloc(size_t bytes) {
5401 size_t pagesz;

Callers

nothing calls this directly

Calls 1

dlmemalignFunction · 0.85

Tested by

no test coverage detected