| 4003 | { |
| 4004 | public: |
| 4005 | WaitWaiter(const UPID& _pid, const Duration& _duration, bool* _waited) |
| 4006 | : ProcessBase(ID::generate("__waiter__")), |
| 4007 | pid(_pid), |
| 4008 | duration(_duration), |
| 4009 | waited(_waited) {} |
| 4010 | |
| 4011 | void initialize() override |
| 4012 | { |
nothing calls this directly
no test coverage detected