| 1837 | static void dist_coordinator_report_plan(ds4_dist_coordinator_state *state); |
| 1838 | |
| 1839 | static bool dist_coordinator_debug_enabled(const ds4_dist_coordinator_state *state) { |
| 1840 | return state && state->debug; |
| 1841 | } |
| 1842 | |
| 1843 | #define DIST_COORD_DEBUG(state, ...) do { \ |
| 1844 | if (dist_coordinator_debug_enabled(state)) fprintf(stderr, __VA_ARGS__); \ |
no outgoing calls
no test coverage detected