| 978 | } |
| 979 | |
| 980 | void ScsiController::Sleep() |
| 981 | { |
| 982 | if (const uint32_t time = SysTimer::GetTimerLow() - execstart; time < MIN_EXEC_TIME) { |
| 983 | SysTimer::SleepUsec(MIN_EXEC_TIME - time); |
| 984 | } |
| 985 | execstart = 0; |
| 986 | } |
| 987 | |
| 988 | unsigned int ScsiController::MIN_EXEC_TIME = 50; |
nothing calls this directly
no outgoing calls
no test coverage detected