thermosphere: add hypercall support... even if unused

This commit is contained in:
TuxSH 2019-07-23 00:54:35 +02:00
parent b5c6b06dad
commit bcc72896fd
5 changed files with 68 additions and 4 deletions
thermosphere/src

View file

@ -105,3 +105,7 @@ static inline u32 get_spsr(void) {
static inline bool check_32bit_additive_overflow(u32 a, u32 b) {
return __builtin_add_overflow_p(a, b, (u32)0);
}
static inline void panic(void) {
for (;;);
}