All the API functions are provided in Unicode and ANSI variants where strings are used. We've also provided a character width neutral #define in the same fashion that the Windows.h header files do.
For example the function for naming a heap is provided as tvSetThreadNameA(), tvSetThreadNameW() with the character width neutral tvSetThreadName() mapping to tvSetThreadNameW() for unicode and tvSetThreadNameA() for ANSI.
In this document we're going to use TCHAR like the Window.h header files do.
All the API functions are declared as extern "C", so they can be used by C users and C++ users.
To use these functions #include svlTVAPI.h into your code.
Loads the profiler DLL into memory, but does not start the profiler.
Use this for:
32 bit applications with a 32 bit Thread Validator GUI
64 bit applications with a 64 bit Thread Validator GUI
For most use cases won't need to load the profiler, as the profiler will have been loaded when your launched your program from Thread Validator, or when you injected into your program using Inject or Wait For Application.
However if you're running your program from outside of Thread Validator and want to load the profiler from inside your program you can use tvLoadProfiler() to do that. You'll then need to call tvStartProfiler() to start it.
extern "C"
int tvLoadProfiler();
Returns:
TRUE Successfully loaded TV DLL into target application.
FALSE Failed to load the TV DLL.into target application.
Check that the PATH environment variable points to the Thread Validator install directory contains svlThreadValidatorStub*.dll.
Do not use this function if you are working with services, use the NT Service API.
Loads the profiler DLL into memory, but does not start the profiler.
Use this for:
32 bit applications with a 64 bit Thread Validator GUI
For most use cases won't need to load the profiler, as the profiler will have been loaded when your launched your program from Thread Validator, or when you injected into your program using Inject or Wait For Application.
However if you're running your program from outside of Thread Validator and want to load the profiler from inside your program you can use tvLoadProfiler6432() to do that. You'll then need to call tvStartProfiler() to start it.
extern "C"
int pvLoadProfiler6432();
Returns:
TRUE Successfully loaded TV DLL into target application.
FALSE Failed to load the TV DLL.into target application.
Check that the PATH environment variable points to the Thread Validator install directory contains svlThreadValidatorStub*.dll.
Do not use this function if you are working with services, use the NT Service API.
To start the profiler from your API code you need to call the function tvStartProfiler() from your code before you call any API functions. Ideally you should call this function as early in your program as possible.
extern "C"
int tvStartProfiler();
Returns:
TRUE Successfully started TV profiler.
FALSE Failed to start the TV profiler.
If you prefer to start the profiler from the user interface or command line you can omit the tvStartProfiler() call. You can leave it present if you wish to start Thread Validator from your program.
Do not use this function if you are working with services, use the NT Service API.
Sets the name of a thread.
extern "C"
void tvSetThreadName(DWORD threadID
const TCHAR *name);
Sets the name of a thread.
extern "C"
void tvSetThreadNameA(DWORD threadID
const char *name);
Sets the name of a thread.
extern "C"
void tvSetThreadNameW(DWORD threadID
const wchar_t *name);
Enables or disables data collection - i.e. whether data is sent to Thread Validator from your target application.
extern "C"
void tvSetCollect(int enable); // TRUE to enable, FALSE to disable
Returns whether data collection is on.
extern "C"
int tvGetCollect(); // Returns TRUE or FALSE