Select the types of activity you want to include in your feed.
1#ifndef HV_TRAP_H 2#define HV_TRAP_H 3 4#include "hv/vcpu.h" 5 6void trap_handle_lower_sync(struct trap_frame *frame); 7void trap_handle_current_sync(struct trap_frame *frame); 8void trap_handle_irq(struct trap_frame *frame); 9 10#endif