| 3451 | list *io_threads_list[IO_THREADS_MAX_NUM]; |
| 3452 | |
| 3453 | static inline unsigned long getIOPendingCount(int i) { |
| 3454 | unsigned long count = 0; |
| 3455 | atomicGetWithSync(io_threads_pending[i], count); |
| 3456 | return count; |
| 3457 | } |
| 3458 | |
| 3459 | static inline void setIOPendingCount(int i, unsigned long count) { |
| 3460 | atomicSetWithSync(io_threads_pending[i], count); |
no outgoing calls
no test coverage detected