Generates a breakpoint on the CPU. Generates a breakpoint on the CPU. The breakpoint must be implemented such that code can resume normal execution after the breakpoint. **/
| 92 | |
| 93 | **/ |
| 94 | VOID |
| 95 | EFIAPI |
| 96 | CpuBreakpoint ( |
| 97 | VOID |
| 98 | ) |
| 99 | { |
| 100 | __asm__ __volatile__ ("int $3"); |
| 101 | } |
| 102 | |
| 103 | |
| 104 |
no outgoing calls
no test coverage detected