AArch64 EL2 hypervisor for QEMU virt that boots at EL2
1

Configure Feed

Select the types of activity you want to include in your feed.

ariel / include / hv / panic.h
289 B 11 lines
1#ifndef HV_PANIC_H 2#define HV_PANIC_H 3 4#include "hv/types.h" 5 6void panic(const char *reason) __attribute__((noreturn)); 7void panic_with_code(const char *reason, uint64_t code) __attribute__((noreturn)); 8 9#define BUG_ON(cond) do { if (cond) { panic("BUG_ON: " #cond); } } while (0) 10 11#endif