mirror of
https://github.com/xzeldon/htop.git
synced 2025-07-12 12:14:36 +03:00
FreeBSD: implement Platform_getDiskIO()
This commit is contained in:

committed by
cgzones

parent
c91061c84b
commit
c2fdfd99eb
@ -141,10 +141,8 @@ char* Platform_getProcessEnv(pid_t pid) {
|
||||
return NULL;
|
||||
}
|
||||
|
||||
bool Platform_getDiskIO(unsigned long int *bytesRead,
|
||||
unsigned long int *bytesWrite,
|
||||
unsigned long int *msTimeSpend) {
|
||||
*bytesRead = *bytesWrite = *msTimeSpend = 0;
|
||||
bool Platform_getDiskIO(DiskIOData* data) {
|
||||
(void)data;
|
||||
return false;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user