Drop unused Platform functions Platform_setTasksValues

This commit is contained in:
Christian Göttsche
2020-10-21 21:25:56 +02:00
committed by cgzones
parent f8bd5acdc1
commit b08b255b41
6 changed files with 0 additions and 20 deletions

View File

@ -200,11 +200,6 @@ void Platform_setSwapValues(Meter* this) {
this->values[0] = pl->usedSwap;
}
void Platform_setTasksValues(Meter* this) {
// TODO
(void)this; // prevent unused warning
}
char* Platform_getProcessEnv(pid_t pid) {
// TODO
(void)pid; // prevent unused warning

View File

@ -38,8 +38,6 @@ void Platform_setMemoryValues(Meter* this);
void Platform_setSwapValues(Meter* this);
void Platform_setTasksValues(Meter* this);
char* Platform_getProcessEnv(pid_t pid);
void Platform_getDiskIO(unsigned long int *bytesRead, unsigned long int *bytesWrite, unsigned long int *msTimeSpend);