Home |
RTKernel-32 Programming Manual Function RTPExcludeFiles |
Function RTPExcludeFilesRTPExcludeFiles excludes source files from profiling: void RTPExcludeFiles(const char * FileName); ParametersFileNamePointer to a file name pattern with no path information or NULL to exclude no source files from profiling. Parameter FileName may contain wildcards '*' and '?'. When the profiler encounters a hit in a source file which matches *FileName, the call stack is unwound to find a function call statement, which is counted instead. RTPExcludeFiles may be called any number of times before profiling is started but must be called after RTKLoadSymbols has been called. To undo all exclusions defined through RTPExcludeFiles and RTPExcludeLines and to revert to profiling all source files and lines, call RTPExcludeFiles(NULL);
|