_heapchk
Executa verificações de consistência no heap.
int _heapchk( void );
Valor de retorno
_heapchk Retorna uma das seguintes constantes de manifesto de inteiro Malloc.h definidas.
_HEAPBADBEGIN
Informações de cabeçalho inicial é inválidas ou não podem ser encontradas._HEAPBADNODE
Nó inválido foi encontrado ou heap está danificado._HEAPBADPTR
Ponteiro em heap inválido._HEAPEMPTY
heap não foi inicializada._HEAPOK
Heap parece estar consistente.
Além disso, se ocorrer um erro, _heapchk Define errno para ENOSYS.
Comentários
The _heapchk função ajuda a depurar problemas relacionados a pilha, verificando a consistência mínima da pilha. If the operating system does not support _heapchk(for example, Windows 98), the function returns _HEAPOK and sets errno to ENOSYS.
Requisitos
Rotina |
Cabeçalho necessário |
Cabeçalho opcional |
---|---|---|
_heapchk |
<malloc.h> |
<errno.h> |
Para obter mais informações de compatibilidade, consulte Compatibilidade na introdução.
Exemplo
// crt_heapchk.c
// This program checks the heap for
// consistency and prints an appropriate message.
#include <malloc.h>
#include <stdio.h>
int main( void )
{
int heapstatus;
char *buffer;
// Allocate and deallocate some memory
if( (buffer = (char *)malloc( 100 )) != NULL )
free( buffer );
// Check heap status
heapstatus = _heapchk();
switch( heapstatus )
{
case _HEAPOK:
printf(" OK - heap is fine\n" );
break;
case _HEAPEMPTY:
printf(" OK - heap is empty\n" );
break;
case _HEAPBADBEGIN:
printf( "ERROR - bad start of heap\n" );
break;
case _HEAPBADNODE:
printf( "ERROR - bad node in heap\n" );
break;
}
}
OK - heap is fine
Equivalente do NET Framework
Não aplicável. Para telefonar a função C padrão, use PInvoke. Para obter mais informações, consulte Exemplos de invocação de plataforma.