| 108 | } |
| 109 | |
| 110 | static void add_steal_notifiers(const tal_t *root) |
| 111 | { |
| 112 | tal_add_notifier(root, TAL_NOTIFY_ADD_CHILD, add_steal_notifier); |
| 113 | |
| 114 | for (const tal_t *i = tal_first(root); i; i = tal_next(i)) |
| 115 | add_steal_notifiers(i); |
| 116 | } |
| 117 | |
| 118 | static void remove_steal_notifiers(void) |
| 119 | { |
no test coverage detected