| 32 | } |
| 33 | |
| 34 | void waitSubFrame() { |
| 35 | u32 sf_start = getSubFrameCounter(); |
| 36 | do { |
| 37 | OSYieldThread(); |
| 38 | } while (sf_start == getSubFrameCounter()); |
| 39 | } |
| 40 | |
| 41 | int rejectCallback(JASDriverCallBack cb, void *arg) { |
| 42 | int ret = sDspSyncCallback.reject(cb, arg); |
no test coverage detected