| 571 | static volatile rt_uint32_t yield_count; |
| 572 | |
| 573 | static void test_thread_yield_inc_entry(void *parameter) |
| 574 | { |
| 575 | rt_uint32_t loop = 0; |
| 576 | |
| 577 | while (1) |
| 578 | { |
| 579 | if (loop++ > 10001) |
| 580 | break; |
| 581 | yield_count++; |
| 582 | rt_thread_yield(); |
| 583 | } |
| 584 | } |
| 585 | |
| 586 | static void test_thread_yield_entry(void *parameter) |
| 587 | { |
nothing calls this directly
no test coverage detected