_get_heap_handle
Retorna o identificador da pilha usada pelo C em time de execução sistema.
intptr_t _get_heap_handle( void );
Valor de retorno
Retorna o identificador de heap do Win32 usado pelo C em time de execução sistema.
Comentários
Use esta função se desejar chamar HeapSetInformation e habilitar a heap de fragmentação baixo na pilha CRT.
Requisitos
Rotina |
Cabeçalho necessário |
---|---|
_get_heap_handle |
<malloc.h> |
Para obter mais informações de compatibilidade, consulte Compatibilidade na introdução.
Exemplo
// crt_get_heap_handle.cpp
// compile with: /MT
#include <windows.h>
#include <malloc.h>
#include <stdio.h>
int main(void)
{
intptr_t hCrtHeap = _get_heap_handle();
ULONG ulEnableLFH = 2;
if (HeapSetInformation((PVOID)hCrtHeap,
HeapCompatibilityInformation,
&ulEnableLFH, sizeof(ulEnableLFH)))
puts("Enabling Low Fragmentation Heap succeeded");
else
puts("Enabling Low Fragmentation Heap failed");
return 0;
}