Comment by int_19h Comment by int_19h 4 days ago 1 reply Copy Link View on Hacker News > windows def allocatorWhich one of them? These days it could mean HeapAlloc, or it could mean malloc from uCRT.
Copy Link carey 4 days ago Collapse Comment - malloc in uCRT just calls HeapAlloc, though? You can see the code in ucrt\heap\malloc_base.cpp if you have the Windows SDK installed.Programs can opt in to the _segment_ heap in their manifest, but it’s not necessarily any faster. Reply View | 0 replies
malloc in uCRT just calls HeapAlloc, though? You can see the code in ucrt\heap\malloc_base.cpp if you have the Windows SDK installed.
Programs can opt in to the _segment_ heap in their manifest, but it’s not necessarily any faster.