1
0
mirror of synced 2026-04-07 21:40:21 +00:00

Changes during UNICOS install experiments. Mainly:

- Waitpid SYSCALL statistics dumping added
- 'core' hard drive added to configs
This commit is contained in:
Andras Tantos
2021-02-21 03:01:56 +00:00
parent 7f4fdc8144
commit a5cd32ae8e
3 changed files with 45 additions and 2 deletions

View File

@@ -260,6 +260,13 @@ void ParseUnicosExchangePacket(const ExchangePacket_c &aCurrentEP, const Exchang
aLogger << " , ";
PrintStringArrayArg(aLogger, 2, aCurrentEP, Mainframe);
break;
case 0x9b: // waitpid
PrintIntArg(aLogger, 0, aCurrentEp, Mainframe);
aLogger << " , ";
PrintPtrArg(aLogger, 1, aCurrentEp, Mainframe);
aLogger << " , ";
PrintIntArg(aLogger, 2, aCurrentEp, Mainframe);
break;
default:
for (uint32_t ArgIdx = 0; ArgIdx < std::min(Entry.ArgCnt, uint32_t(10)); ++ArgIdx) {
if (ArgIdx != 0) aLogger << " , ";