00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022 #ifndef _memory_h_
00023 #define _memory_h_
00024
00025 void initMemory(struct SensorModul* sm);
00026 void exitMemory(void);
00027
00028 int updateMemory(void);
00029
00030 void printMFree(const char* cmd);
00031 void printMFreeInfo(const char* cmd);
00032 void printUsed(const char* cmd);
00033 void printUsedInfo(const char* cmd);
00034 void printBuffers(const char* cmd);
00035 void printBuffersInfo(const char* cmd);
00036 void printCached(const char* cmd);
00037 void printCachedInfo(const char* cmd);
00038 void printApplication(const char* cmd);
00039 void printApplicationInfo(const char* cmd);
00040 void printSwapUsed(const char* cmd);
00041 void printSwapUsedInfo(const char* cmd);
00042 void printSwapFree(const char* cmd);
00043 void printSwapFreeInfo(const char* cmd);
00044
00045 #endif