mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-08 04:48:08 +02:00
panfrost: Call abort() when aborting on fault
The existing exit(EIO) wasn't getting trapped by debuggers. Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/11104>
This commit is contained in:
parent
5109f4e507
commit
08a6608467
1 changed files with 1 additions and 1 deletions
|
|
@ -1150,7 +1150,7 @@ pandecode_abort_on_fault(mali_ptr jc_gpu_va)
|
|||
/* Ensure the job is marked COMPLETE */
|
||||
if (h.exception_status != 0x1) {
|
||||
fprintf(stderr, "Incomplete job or timeout");
|
||||
exit(EIO);
|
||||
abort();
|
||||
}
|
||||
} while ((jc_gpu_va = next_job));
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue