The DESC parameter is used to produce a description for the tracepoint that is output as the first line of formatted data. It should include the entry point name of the procedure being traced and whether this is an entry or return point. The descriptive string is enclosed in double quotes as for a C language string. The DESC parameter is required if any FMT specifications are present.
The recommended formats for such strings are as follows:
DESC="name Pre-Invocation", DESC="name Post-Invocation",
where:
name
The words Pre-Invocation and Post-Invocation are not mandatory, merely recommendations to be compatible with the base OS/2 tracepoints, when formatted. If a tracepoint is inserted in the middle of a procedure it will be appropriate to use different wording. The Trace Customizer does not check the wording.
The following is an example of pre-invocation and post-invocation tracepoints:
TRACE MINOR=0x0001, TP=.DosOpen, DESC="(OS) DosOpen Pre-Invocation",..... TRACE MINOR=0x8001, TP=.DosOpen,RETEP, DESC="(OS) DosOpen Post-Invocation",.....