We can use SHOW command to display NAME, CPUTIME, IOTIME, READYQTIME, INITPBITTIME in WFL or Cande (Unisys mainframe). Is there any way to use this SHOW command in Unisys cobol 85 program to figure out how much CPUTIME or IOTIME my program is taking.
SHOW MIX NAME, CPUTIME, IOTIME, READYQTIME, INITPBITTIME
MixNo-CPUTime---IOTime---ReadyQTime-InitPBit---Name-----------
8465 14:32 :00 1:17 :00 NOTHING ON DISK
8411 2:35 :04 :45 :06 SYSTEM/TESTIT
8438 1:14 :01 :24 :09 SYSTEM/LCF
8441 1:05 :00 :24 :02 *SYSTEM/COMS
My program:
IDENTIFICATION DIVISION. ...
PROCEDURE DIVISION. ...
"I have to use Show command here to display CPUTIME or IOTIME"
...