| 722 | } |
| 723 | |
| 724 | void PiuDebugMachineDelete(void* data) |
| 725 | { |
| 726 | PiuDebugMachine self = data; |
| 727 | if (self) { |
| 728 | PiuDebugMachineDisconnect(self); |
| 729 | c_free(self); |
| 730 | } |
| 731 | } |
| 732 | |
| 733 | void PiuDebugMachineDisconnect(PiuDebugMachine self) |
| 734 | { |
no test coverage detected