_heapchk
Esegue i controlli di coerenza nell'heap.
int _heapchk( void );
Valore restituito
_heapchk restituisce uno dei seguenti costanti di manifesto integer definite in Malloc.h.
_HEAPBADBEGIN
Le informazioni di intestazione iniziali non è corretto o non sono disponibili._HEAPBADNODE
Errato nodo è stato trovato o l'heap è danneggiata._HEAPBADPTR
Il puntatore nell'heap non è valido._HEAPEMPTY
L'heap non è stata inizializzata._HEAPOK
L'heap può essere coerente.
Inoltre, se si verifica un errore, _heapchk set errno in ENOSYS.
Note
_heapchk problemi heap-correlati debug delle guide di funzione verificando la coerenza minima dell'heap.se il sistema operativo non supporta _heapchkad esempio, Windows 98), la funzione restituisce _HEAPOK e set errno in ENOSYS.
Requisiti
routine |
Intestazione di associazione |
intestazione facoltativa |
---|---|---|
_heapchk |
<malloc.h> |
<errno.h> |
Per ulteriori informazioni sulla compatibilità, vedere compatibilità nell'introduzione.
Esempio
// 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;
}
}
Equivalente .NET Framework
Non applicabile. Per chiamare la funzione c standard, utilizzare PInvoke. Per ulteriori informazioni, vedere Esempi di pinvoke.