| 559 | } |
| 560 | |
| 561 | static void cbForStateCheckID3(u32 intType) |
| 562 | { |
| 563 | if (intType == 16) |
| 564 | { |
| 565 | executing->state = -1; |
| 566 | stateTimeout(); |
| 567 | return; |
| 568 | } |
| 569 | |
| 570 | if (intType & 1) |
| 571 | { |
| 572 | NumInternalRetry = 0; |
| 573 | |
| 574 | if (!CheckCancel(0)) |
| 575 | { |
| 576 | executing->state = 1; |
| 577 | stateBusy(executing); |
| 578 | } |
| 579 | } |
| 580 | else |
| 581 | { |
| 582 | stateGettingError(); |
| 583 | } |
| 584 | } |
| 585 | |
| 586 | static void AlarmHandler(OSAlarm* alarm, OSContext* context) |
| 587 | { |
nothing calls this directly
no test coverage detected