procps/vmstat.h
2003-05-31 00:38:55 +00:00

28 lines
866 B
C

/* vmstat.h - Header file: memory usage */
/*
* Copyright (c) 2003, by: Fabian Frederick
* All rights reserved. fabian.frederick@gmx.fr
*
*
* This file may be used subject to the terms and conditions of the
* GNU Library General Public License Version 2, or any later version
* at your option, as published by the Free Software Foundation.
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Library General Public License for more details.
*
*
*/
#ifndef _IVMstat
#define _IVMstat
unsigned long dataUnit=1024;
char szDataUnit [16];
#define UNIT_k 1000
#define UNIT_K 1024
#define UNIT_m 1000000
#define UNIT_M 1048576
#endif /* _IVMstat */