| 2758 | } |
| 2759 | |
| 2760 | void blockingOperationStarts() { |
| 2761 | if(!g_pserver->blocking_op_nesting++){ |
| 2762 | __atomic_load(&g_pserver->mstime, &g_pserver->blocked_last_cron, __ATOMIC_ACQUIRE); |
| 2763 | } |
| 2764 | } |
| 2765 | |
| 2766 | void blockingOperationEnds() { |
| 2767 | if(!(--g_pserver->blocking_op_nesting)){ |
no outgoing calls
no test coverage detected