Distributed Tuning Interface Reference : PvStart()
 
PvStart()
Start a Distributed Tuning Interface (DTI) session. This function must be called before any DTI calls are made.
Header File: connect.h (See also Header Files)
Function First Available In Library: w3dbav75.dll (Windows), libpsqldti.so (Linux), libpsqldti.dylib (macOS) (See also Link Libraries)
Syntax
BTI_SINT PvStart(BTI_LONG reserved);
Arguments
 
In
reserved
Reserved for future use.
Return Values
 
P_OK
The operation was successful.
P_E_FAIL
A general failure occurred.
Remarks
This function performs initialization and binds resources for DTI.
Example
BTI_SINT status = 0;
 
status = PvStart(0);
// invoke multiple DTI calls
status = PvStop (0);
See Also
PvStop()