_CrtSetDebugFillThreshold
在调试函数中检索或修改控制缓冲区填充行为的阈值。
语法
size_t _CrtSetDebugFillThreshold( size_t newThreshold );
参数
newThreshold
新阈值大小(以字节为单位)。
返回值
以前的阈值。
注解
某些安全性增强了的 CRT 函数的调试版本将使用特殊字符 (0xFE) 来填充传递给它们的缓冲区。 填充字符有助于查找为函数传递错误大小的情况。 遗憾的是,这样也会降低性能。 若要提高性能,可对大于 newThreshold
阈值的缓冲区使用 _CrtSetDebugFillThreshold
来禁止填充缓冲区。 如果 newThreshold
值为 0,则对所有缓冲区禁用缓冲区填充。
默认阈值为 SIZE_T_MAX
。
下面列出了受影响的函数:
要求
例程 | 必需的标头 |
---|---|
_CrtSetDebugFillThreshold |
<crtdbg.h> |
此函数特定于 Microsoft。 有关兼容性的详细信息,请参阅 兼容性。
库
仅 C 运行时库的调试版本。
示例
// crt_crtsetdebugfillthreshold.c
// compile with: cl /MTd crt_crtsetdebugfillthreshold.c
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <crtdbg.h>
void Clear( char buff[], size_t size )
{
for( int i=0; i<size; ++i )
buff[i] = 0;
}
void Print( char buff[], size_t size )
{
for( int i=0; i<size; ++i )
printf( "%02x %c\n", (unsigned char)buff[i], buff[i] );
}
int main( void )
{
char buff[10];
printf( "With buffer-filling on:\n" );
strcpy_s( buff, _countof(buff), "howdy" );
Print( buff, _countof(buff) );
_CrtSetDebugFillThreshold( 0 );
printf( "With buffer-filling off:\n" );
Clear( buff, _countof(buff) );
strcpy_s( buff, _countof(buff), "howdy" );
Print( buff, _countof(buff) );
}
With buffer-filling on:
68 h
6f o
77 w
64 d
79 y
00
fe ■
fe ■
fe ■
fe ■
With buffer-filling off:
68 h
6f o
77 w
64 d
79 y
00
00
00
00
00