~ubuntu-branches/ubuntu/trusty/bubblemon/trusty

« back to all changes in this revision

Viewing changes to src/meter.h

  • Committer: Bazaar Package Importer
  • Author(s): Eric Dorland
  • Date: 2005-03-10 01:12:22 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20050310011222-co7htx6t24yimvki
Tags: 2.0.4-1
New upstream release. (Closes: #298798)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 *  Bubbling Load Monitoring Applet
 
3
 *  Copyright (C) 1999-2004 Johan Walles - walles@mailblocks.com
 
4
 *  http://www.nongnu.org/bubblemon/
 
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., 59 Temple Street #330, Boston, MA 02111-1307, USA.
 
19
 */
 
20
 
 
21
#ifndef METER_H
 
22
#define METER_H
 
23
 
 
24
#include "bubblemon.h"
 
25
 
 
26
/* The system load */
 
27
typedef struct
 
28
{
 
29
  u_int64_t memoryUsed;
 
30
  u_int64_t memorySize;
 
31
    
 
32
  u_int64_t swapUsed;
 
33
  u_int64_t swapSize;
 
34
    
 
35
  /* How many CPUs are in the system */
 
36
  int nCpus;
 
37
  
 
38
  /* A pointer to an array containing the loads of each of the
 
39
     system's CPUs in percent (0-100).  Index 0 is the average CPU
 
40
     load for the whole system, index 1 and up are the loads on the
 
41
     individual CPUs. */
 
42
  int *cpuLoad; 
 
43
} meter_sysload_t;
 
44
 
 
45
/* Initialize the load metering */
 
46
extern void meter_init(meter_sysload_t *);
 
47
 
 
48
/* Meter the system load */
 
49
extern void meter_getLoad(meter_sysload_t *);
 
50
 
 
51
/* Shut down load metering */
 
52
extern void meter_done(void);
 
53
 
 
54
#endif