tmux-mem-cpu-load/openbsd/cpu.h

17 lines
239 B
C
Raw Normal View History

2015-01-19 17:41:51 -05:00
#ifndef CPU_H_
#define CPU_H_
#include <sys/types.h>
#define CP_USER 0
#define CP_NICE 1
#define CP_SYS 2
#define CP_INTR 3
#define CP_IDLE 4
#define CPUSTATES 5
2015-01-19 17:41:51 -05:00
float cpu_percentage(unsigned);
uint8_t getCpuCount();
#endif