]> granicus.if.org Git - sysstat/blob - pcp_stats.h
sadf: PCP: Add support for A_IRQ activity
[sysstat] / pcp_stats.h
1 /*
2  * pcp_stats.h: Include file used to display system statistics in PCP format.
3  * (C) 2019 by Sebastien Godard (sysstat <at> orange.fr)
4  */
5
6 #ifndef _PCP_STATS_H
7 #define _PCP_STATS_H
8
9 /*
10  ***************************************************************************
11  * Prototypes for functions used to display system statistics in PCP format
12  ***************************************************************************
13  */
14
15 /* Functions used to display statistics in PCP format */
16 __print_funct_t pcp_print_cpu_stats
17         (struct activity *, int, unsigned long long, struct record_header *);
18 __print_funct_t pcp_print_pcsw_stats
19         (struct activity *, int, unsigned long long, struct record_header *);
20 __print_funct_t pcp_print_irq_stats
21         (struct activity *, int, unsigned long long, struct record_header *);
22 __print_funct_t pcp_print_memory_stats
23         (struct activity *, int, unsigned long long, struct record_header *);
24 __print_funct_t pcp_print_queue_stats
25         (struct activity *, int, unsigned long long, struct record_header *);
26
27 #endif /* _PCP_STATS_H */