Add DiskIOMeter for IO read/write usage

This commit is contained in:
Christian Göttsche
2020-09-13 19:46:34 +02:00
committed by cgzones
parent 6f387008cb
commit e518459981
19 changed files with 223 additions and 2 deletions

View File

@ -205,3 +205,8 @@ char* Platform_getProcessEnv(pid_t pid) {
(void)pid; // prevent unused warning
return NULL;
}
void Platform_getDiskIO(unsigned long int *bytesRead, unsigned long int *bytesWrite, unsigned long int *msTimeSpend) {
// TODO
*bytesRead = *bytesWrite = *msTimeSpend = 0;
}