| 49 | } |
| 50 | |
| 51 | void add_print_handler(PrintHandlerList *p_handler) { |
| 52 | _global_lock(); |
| 53 | p_handler->next = print_handler_list; |
| 54 | print_handler_list = p_handler; |
| 55 | _global_unlock(); |
| 56 | } |
| 57 | |
| 58 | void remove_print_handler(const PrintHandlerList *p_handler) { |
| 59 | _global_lock(); |