_heapchk
執行一致性檢查,在堆積上。
int _heapchk( void );
傳回值
_heapchk傳回下列整數資訊清單常數 Malloc.h 所述的其中一個。
_HEAPBADBEGIN
初始的標頭資訊是不正確,或找不到。_HEAPBADNODE
在找到不正確的節點,或已損毀堆積。_HEAPBADPTR
無效的堆積指標。_HEAPEMPTY
堆集尚未初始化。_HEAPOK
堆積似乎一致。
此外,如果發生錯誤時, _heapchk設定errno到ENOSYS。
備註
_heapchk函數可以幫助偵錯堆積的最小的一致性檢查的堆集相關的問題。 如果作業系統不支援_heapchk(比方說,Windows 98),則函數會傳回_HEAPOK ,並設定errno到ENOSYS。
需求
常式 |
所需的標頭 |
選擇性標頭 |
---|---|---|
_heapchk |
<malloc.h> |
<errno.h> |
如需相容性資訊,請參閱相容性在簡介中。
範例
// 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;
}
}
.NET Framework 對等用法
不適用。 若要呼叫標準的 c 函式,使用PInvoke。 如需詳細資訊,請參閱平台叫用範例。