| 234 | } |
| 235 | |
| 236 | static void |
| 237 | stop_attrd_timer(attr_hash_entry_t * hash_entry) |
| 238 | { |
| 239 | if (hash_entry != NULL && hash_entry->timer_id != 0) { |
| 240 | crm_trace("Stopping %s timer", hash_entry->id); |
| 241 | g_source_remove(hash_entry->timer_id); |
| 242 | hash_entry->timer_id = 0; |
| 243 | } |
| 244 | } |
| 245 | |
| 246 | static void |
| 247 | log_hash_entry(int level, attr_hash_entry_t * entry, const char *text) |
no outgoing calls
no test coverage detected