_get_sbh_threshold
返回由小的块堆支持内存分配大小的上限。
size_t _get_sbh_threshold( void );
返回值
返回由小的块堆支持内存分配大小的上限。
备注
_get_sbh_threshold 获取对块堆的当前阈值。 默认阈值范围是 Windows 2000 和最新平台的零。 默认情况下,对块堆在 Windows 2000 和最新平台不使用,不过, _set_sbh_threshold 可以调用以非零值启用这些实例的小型块堆。
要求
实例 |
必需的头 |
---|---|
_get_sbh_threshold |
malloc.h |
有关更多兼容性信息,请参见中介绍的 兼容性 。
示例
此过程演示如何检索由小的块堆支持内存分配大小的上限。
// crt__get_sbh_threshold.c
#include <stdio.h>
#include <malloc.h>
int main( void )
{
size_t sbh_threshold;
sbh_threshold = _get_sbh_threshold();
printf( "The upper limit for the size of a memory allocation is %d.\n", sbh_threshold);
}
.NET Framework 等效项
不适用。若要调用标准 C 函数,请使用 PInvoke。有关更多信息,请参见 平台调用示例。