]> granicus.if.org Git - sysstat/blob - count.h
Update functons used to count number of FC hosts
[sysstat] / count.h
1 /*
2  * count.h: Include file used to count items for which
3  * statistics will be collected.
4  * (C) 1999-2015 by Sebastien Godard (sysstat <at> orange.fr)
5  */
6
7 #ifndef _COUNT_H
8 #define _COUNT_H
9
10 #include "common.h"
11
12 /*
13  ***************************************************************************
14  * Prototypes for functions used to count number of items.
15  ***************************************************************************
16  */
17
18 extern int
19         get_cpu_nr(unsigned int, int);
20 extern int
21         get_irqcpu_nr(char *, int, int);
22 extern int
23         get_diskstats_dev_nr(int, int);
24 extern int
25         get_irq_nr(void);
26 extern int
27         get_serial_nr(void);
28 extern int
29         get_iface_nr(void);
30 extern int
31         get_disk_nr(unsigned int);
32 extern int
33         get_freq_nr(void);
34 extern int
35         get_usb_nr(void);
36 extern int
37         get_filesystem_nr(void);
38 extern int
39         get_fchost_nr(void);
40
41 #endif /* _COUNT_H */