Please enable JavaScript to view this site.

Thread Validator Help

Navigation: Native API

Native API Reference

Scroll Prev Top Next More

 

Unicode or ANSI?

 

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.

 

 

tvLoadProfiler

 

Loads the profiler DLL into memory, but does not start the profiler.

 

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" 

void tvLoadProfiler();

 

Do not use this function if you are working with services, use the NT Service API.

 

 

tvStartProfiler

 

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" 

void tvStartProfiler();

 

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.

 

 

tvSetThreadName()

 

Sets the name of a thread.

 

extern "C" 
void tvSetThreadName(DWORD                threadID

                     const TCHAR        *name);

 

 

tvSetThreadNameA()

 

Sets the name of a thread.

 

extern "C" 
void tvSetThreadNameA(DWORD                threadID

                      const char        *name);

 

 

tvSetThreadNameW()

 

Sets the name of a thread.

 

extern "C" 
void tvSetThreadNameW(DWORD                threadID

                      const wchar_t        *name);

 

 

tvSetCollect()

 

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

 

 

tvGetCollect()

 

Returns whether data collection is on.

 

extern "C" 
int tvGetCollect();                 // Returns TRUE or FALSE