| 167 | } |
| 168 | |
| 169 | int run_dr_cbs(enum drcb_types type, void *param) |
| 170 | { |
| 171 | struct dr_callback *it = dr_cbs[type]; |
| 172 | |
| 173 | if (!it) |
| 174 | return -1; |
| 175 | |
| 176 | for (; it; it = it->next) |
| 177 | it->callback(param); |
| 178 | |
| 179 | return 0; |
| 180 | } |
no outgoing calls
no test coverage detected