ReactOS 0.4.16-dev-942-g91fadeb
debug_fill_threshold.cpp File Reference
#include <corecrt_internal.h>
#include <stdint.h>
Include dependency graph for debug_fill_threshold.cpp:

Go to the source code of this file.

Functions

size_t __cdecl _CrtSetDebugFillThreshold (size_t const new_threshold)
 
size_t __cdecl _CrtGetDebugFillThreshold ()
 

Variables

static size_t __acrt_debug_fill_threshold = SIZE_MAX
 

Function Documentation

◆ _CrtGetDebugFillThreshold()

size_t __cdecl _CrtGetDebugFillThreshold ( )

Definition at line 26 of file debug_fill_threshold.cpp.

27{
29}
static size_t __acrt_debug_fill_threshold

◆ _CrtSetDebugFillThreshold()

size_t __cdecl _CrtSetDebugFillThreshold ( size_t const  new_threshold)

Definition at line 19 of file debug_fill_threshold.cpp.

20{
21 size_t const old_threshold{__acrt_debug_fill_threshold};
22 __acrt_debug_fill_threshold = new_threshold;
23 return old_threshold;
24}

Variable Documentation

◆ __acrt_debug_fill_threshold

size_t __acrt_debug_fill_threshold = SIZE_MAX
static