1/*
2 KSysGuard, the KDE System Guard
3
4 Copyright (c) 1999 - 2001 Chris Schlaeger <cs@kde.org>
5
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
10
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
19
20*/
21
22#ifndef KSG_MEMORY_H
23#define KSG_MEMORY_H
24
25void initMemory( struct SensorModul* );
26void exitMemory( void );
27
28int updateMemory( void );
29
30void printMFree( const char* );
31void printMFreeInfo( const char* );
32void printUsed( const char* );
33void printUsedInfo( const char* );
34void printAppl( const char* );
35void printApplInfo( const char* );
36void printBuffers( const char* );
37void printBuffersInfo( const char* );
38void printCached( const char* );
39void printCachedInfo( const char* );
40void printSwapUsed( const char* );
41void printSwapUsedInfo( const char* );
42void printSwapFree( const char* );
43void printSwapFreeInfo( const char* );
44
45#endif
46