video_core: amdgpu: simply crash if an exception occured in coro
This commit is contained in:
parent
863d80c16c
commit
23cc60bf06
|
@ -834,7 +834,9 @@ private:
|
|||
static constexpr std::suspend_always final_suspend() noexcept {
|
||||
return {};
|
||||
}
|
||||
void unhandled_exception() {}
|
||||
void unhandled_exception() {
|
||||
UNREACHABLE();
|
||||
}
|
||||
void return_void() {}
|
||||
struct empty {};
|
||||
std::suspend_always yield_value(empty&&) {
|
||||
|
|
Loading…
Reference in New Issue