#define INTERACTIVE_ERRORS \
PARA_ERROR(I9E_EOF, "end of input"), \
PARA_ERROR(I9E_SETUPTERM, "failed to set up terminal"), \
+ PARA_ERROR(I9E_TERM_RQ, "received termination request"), \
/** \endcond errors */
bool line_handler_running;
bool input_eof;
bool caught_sigint;
+ bool caught_sigterm;
};
static struct i9e_private i9e_private, *i9ep = &i9e_private;
char *buf;
size_t sz;
- if (i9ep->input_eof) {
- t->error = -E_I9E_EOF;
- return;
- }
+ ret = -E_I9E_EOF;
+ if (i9ep->input_eof)
+ goto rm_btrn;
+ ret = -E_I9E_TERM_RQ;
+ if (i9ep->caught_sigterm)
+ goto rm_btrn;
if (!btrn) {
i9ep->caught_sigint = false;
if (FD_ISSET(ici->fds[0], &s->rfds))
i9e_input();
return;
}
+ ret = 0;
if (i9ep->caught_sigint)
goto rm_btrn;
ret = btr_node_status(i9ep->stdout_btrn, 0, BTR_NT_LEAF);
{
int ret;
- if (i9ep->input_eof || i9ep->caught_sigint) {
+ if (i9ep->input_eof || i9ep->caught_sigint || i9ep->caught_sigterm) {
sched_min_delay(s);
return;
}
reset_line_state();
i9ep->caught_sigint = true;
}
+ if (sig_num == SIGTERM)
+ i9ep->caught_sigterm = true;
}
/**