| 472 | center.wakeup(); |
| 473 | } |
| 474 | void* entry() override { |
| 475 | center.set_owner(); |
| 476 | bind_thread_to_cpu(2); |
| 477 | while (!done) |
| 478 | center.process_events(1000); |
| 479 | return 0; |
| 480 | } |
| 481 | }; |
| 482 | |
| 483 | class CountEvent: public EventCallback { |
nothing calls this directly
no test coverage detected