| 97 | } |
| 98 | |
| 99 | bool StackFrame::checkInterruptedSyscall() { |
| 100 | return retval() == (uintptr_t)-EINTR; |
| 101 | } |
| 102 | |
| 103 | bool StackFrame::isSyscall(instruction_t* pc) { |
| 104 | // RISC-V ISA uses ECALL for doing both syscalls and debugger |
nothing calls this directly
no outgoing calls
no test coverage detected