|
SAA_channelDumpInfo
Dumps channel information to a file.
set chnInfo [SAA_AllocChannelInfo]
.
.
.
set fileName "some_file_name"
set chnInfo [SAA_AllocChannelInfo]
SAA_channelDumpInfo fileName $chnInfo
fileName
- Name of the output file. If the file already exists, the output is appended to the file.
If
fileName is NULL, the output is sent to stderr.
chnInfo
- Channel information to dump. Use
SAA_channelGetInfo
to fill in this structure. If chnInfo is NULL, information on
the current channels run is printed.
Return Value
Return correct usage if incorrect parameters are passed
"SI_ERR_ERROR_MSG" if there is no current channel run.
|