| 1341 | } |
| 1342 | |
| 1343 | void NORETURN plugin_exit(struct plugin *p, int exitcode) |
| 1344 | { |
| 1345 | p->exiting = true; |
| 1346 | io_conn_out_exclusive(p->stdout_conn, true); |
| 1347 | io_wake(p); |
| 1348 | io_loop(NULL, NULL); |
| 1349 | exit(exitcode); |
| 1350 | } |
| 1351 | |
| 1352 | void NORETURN plugin_errv(struct plugin *p, const char *fmt, va_list ap) |
| 1353 | { |