00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021 #ifndef _diskstat_h_
00022 #define _diskstat_h_
00023
00024 void initDiskStat(struct SensorModul* sm);
00025 void exitDiskStat(void);
00026
00027 int updateDiskStat(void);
00028 void checkDiskStat(void);
00029
00030 void printDiskStat(const char* cmd);
00031 void printDiskStatInfo(const char* cmd);
00032
00033 void printDiskStatUsed(const char* cmd);
00034 void printDiskStatUsedInfo(const char* cmd);
00035 void printDiskStatFree(const char* cmd);
00036 void printDiskStatFreeInfo(const char* cmd);
00037 void printDiskStatPercent(const char* cmd);
00038 void printDiskStatPercentInfo(const char* cmd);
00039
00040 #endif