| 5526 | #define LLV_DEBUG 0 |
| 5527 | |
| 5528 | static bool sync_timeout_check(frame_time_t max) |
| 5529 | { |
| 5530 | #if LLV_DEBUG |
| 5531 | return true; |
| 5532 | #else |
| 5533 | frame_time_t rpt = read_processor_time(); |
| 5534 | return rpt - max <= 0; |
| 5535 | #endif |
| 5536 | } |
| 5537 | |
| 5538 | extern int busywait; |
| 5539 | static void scanlinesleep(int currline, int nextline) |
no test coverage detected