_heapset
檢查堆積的最小的一致性,並將可用的項目設定為指定的值。
int _heapset(
unsigned int fill
);
參數
- fill
填滿的字元。
傳回值
_heapset傳回下列整數資訊清單常數 Malloc.h 所述的其中一個。
_HEAPBADBEGIN
初始的標頭資訊無效或找不到。_HEAPBADNODE
堆積損毀或找到不正確的節點。_HEAPEMPTY
未初始化的堆積。_HEAPOK
堆積似乎一致。
此外,如果發生錯誤時, _heapset設定errno到ENOSYS。
備註
_heapset函式會顯示可用的記憶體位置或已被不小心覆寫的節點。
_heapset會在堆積上的最小一致性檢查,並設定每個位元組的堆積的可用項目來fill的值。 堆積的記憶體位置可用的節點,而且其中包含被不小心寫入已釋放的記憶體的資料,就會顯示這個已知的值。 如果作業系統不支援_heapset(比方說,Windows 98),則函數會傳回_HEAPOK ,並設定errno到ENOSYS。
需求
常式 |
所需的標頭 |
選擇性標頭 |
---|---|---|
_heapset |
<malloc.h> |
<errno.h> |
如需相容性資訊,請參閱相容性在簡介中。
範例
// crt_heapset.c
// This program checks the heap and
// fills in free entries with the character 'Z'.
#include <malloc.h>
#include <stdio.h>
#include <stdlib.h>
int main( void )
{
int heapstatus;
char *buffer;
if( (buffer = malloc( 1 )) == NULL ) // Make sure heap is
exit( 0 ); // initialized
heapstatus = _heapset( 'Z' ); // Fill in free entries
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;
}
free( buffer );
}
.NET Framework 對等用法
不適用。 若要呼叫標準的 c 函式,使用PInvoke。 如需詳細資訊,請參閱平台叫用範例。