Home
last modified time | relevance | path

Searched refs:SY_ENAB_SIGINT (Results 1 – 4 of 4) sorted by relevance

/dports/mail/elm/elm2.5.8/src/
H A Dsyscall.c95 ret = system_call(command, SY_USER_SHELL|SY_ENAB_SIGINT|SY_DUMPSTATE); in subshell()
273 if (options&SY_ENAB_SIGINT)
276 (void) signal(SIGINT, (options&SY_ENAB_SIGINT) ? SIG_DFL : SIG_IGN);
277 (void) signal(SIGQUIT, (options&SY_ENAB_SIGINT) ? SIG_DFL : SIG_IGN);
391 ret = system_call(buffer, SY_USER_SHELL|SY_ENAB_SIGINT|SY_DUMPSTATE); in do_pipe()
H A Dshowmsg.c161 code = system_call(Cmd, SY_ENAB_SIGINT);
272 _exit(system_call(pager, SY_ENAB_SIGINT));
H A Deditmsg.c667 (void) system_call(linebuf+2, SY_COOKED|SY_ENAB_SIGINT|SY_DUMPSTATE);
676 SY_COOKED|SY_USER_SHELL|SY_ENAB_SIGINT|SY_DUMPSTATE);
/dports/mail/elm/elm2.5.8/hdrs/
H A Delm_globals.h157 #define SY_ENAB_SIGINT (1<<3) /* ...and it can handle SIGINT too */ macro