| 106 | } |
| 107 | |
| 108 | static void notify_remove_tree(const char *path) |
| 109 | { |
| 110 | TempAllocator512 ta; |
| 111 | StringStream ss(ta); |
| 112 | ss << "{\"type\":\"remove_tree\",\"path\":\"" << path << "\"}"; |
| 113 | console_server()->broadcast(string_stream::c_str(ss)); |
| 114 | } |
| 115 | |
| 116 | static void notify_change_file(const char *path, Stat &st) |
| 117 | { |
no test coverage detected