Select the types of activity you want to include in your feed.
1#ifndef HV_MONITOR_H 2#define HV_MONITOR_H 3 4#include "hv/vcpu.h" 5 6void monitor_init(void); 7void monitor_poll(void); 8void monitor_loop(struct vcpu *vcpu, const char *reason); 9 10#endif