File: vmstat.h

package info (click to toggle)
ruby-vmstat 2.3.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 344 kB
  • sloc: ruby: 1,136; ansic: 347; makefile: 3
file content (17 lines) | stat: -rw-r--r-- 395 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include <ruby.h>

#ifndef _VMSTAT_H_
#define _VMSTAT_H_

#define AVGCOUNT 3

VALUE vmstat_network_interfaces(VALUE self);
VALUE vmstat_cpu(VALUE self);
VALUE vmstat_memory(VALUE self);
VALUE vmstat_disk(VALUE self, VALUE path);
VALUE vmstat_load_average(VALUE self);
VALUE vmstat_boot_time(VALUE self);
VALUE vmstat_task(VALUE self);
VALUE vmstat_pagesize(VALUE self);

#endif /* _VMSTAT_H_ */