| 2278 | |
| 2279 | |
| 2280 | void blockingOperationStarts() { |
| 2281 | if(!server.blocking_op_nesting++){ |
| 2282 | updateCachedTime(0); |
| 2283 | server.blocked_last_cron = server.mstime; |
| 2284 | } |
| 2285 | } |
| 2286 | |
| 2287 | void blockingOperationEnds() { |
| 2288 | if(!(--server.blocking_op_nesting)){ |
no test coverage detected