PurifierGranularity()
语法
PurifierGranularity(GlobalGranularity, LocalGranularity, StringGranularity, DynamicGranularity)概要
Change the interval in which the purifier checks the different areas for memory corruption.
参数
GlobalGranularity The number of source lines to execute between checks on global variables. Using #PB_Ignore will keep the existing interval value. A value of 0 disables the check. LocalGranularity The number of source lines to execute between checks on local variables. Using #PB_Ignore will keep the existing interval value. A value of 0 disables the check. StringGranularity The number of source lines to execute between checks on string memory. Using #PB_Ignore will keep the existing interval value. A value of 0 disables the check. DynamicGranularity The number of source lines to execute between checks on allocated memory. Using #PB_Ignore will keep the existing interval value. A value of 0 disables the check.
返回值
无.
示例
; Disable check for string memory and check allocated memory every 10 lines PurifierGranularity(#PB_Ignore, #PB_Ignore, 0, 10)
参阅
Included debugging tools
已支持操作系统
所有