Controlling the Size of the Call Log and Call Stack
Two parameters in vv_debug.h control the number of functions that the call log and call stack can store for display. You can change these parameters if required by your programs.
- nDBSTKSIZE is the number of bytes in the buffer used to keep the names of the active functions for the call stack. These are the functions that lead from main() to the function detecting the error. The default setting is 1024.
- nDBLOGSIZE is the maximum number of functions in that can appear in the call log. The default setting is 64, i.e., the last 64 calls from main() will be listed in the call log.