pause all thread pools
| 113 | |
| 114 | // pause all thread pools |
| 115 | void ThreadPools_Pause |
| 116 | ( |
| 117 | void |
| 118 | ) { |
| 119 | ASSERT(_readers_thpool != NULL); |
| 120 | ASSERT(_writers_thpool != NULL); |
| 121 | |
| 122 | thpool_pause(_readers_thpool); |
| 123 | thpool_pause(_writers_thpool); |
| 124 | } |
| 125 | |
| 126 | void ThreadPools_Resume |
| 127 | ( |
no test coverage detected