| 124 | } |
| 125 | |
| 126 | static void add_steal_notifiers(const tal_t *root) |
| 127 | { |
| 128 | tal_add_notifier(root, TAL_NOTIFY_ADD_CHILD, add_steal_notifier); |
| 129 | |
| 130 | for (const tal_t *i = tal_first(root); i; i = tal_next(i)) |
| 131 | add_steal_notifiers(i); |
| 132 | } |
| 133 | |
| 134 | static void remove_steal_notifiers(void) |
| 135 | { |
no test coverage detected