| 9 | ////////////////////////////////////////////////////////////////////////// |
| 10 | |
| 11 | class aio_timer_task { |
| 12 | public: |
| 13 | aio_timer_task() {} |
| 14 | ~aio_timer_task() {} |
| 15 | |
| 16 | private: |
| 17 | friend class aio_timer_callback; |
| 18 | |
| 19 | unsigned int id; |
| 20 | acl_int64 delay; |
| 21 | acl_int64 when; |
| 22 | }; |
| 23 | |
| 24 | ////////////////////////////////////////////////////////////////////////// |
| 25 |
no outgoing calls
no test coverage detected
searching dependent graphs…