| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 | /* * List of signal names known to SSH, indicating whether PuTTY's UI * for special session commands likes to put them in the main specials * menu or in a submenu (and if the former, what title they have). * * This is a separate header file rather than my usual style of a * parametric list macro, because in this case I need to be able to * #ifdef out each mode in case it's not defined on a particular * target system. * * If you want only the locally defined signals, #define * SIGNALS_LOCAL_ONLY before including this header. */#if !defined SIGNALS_LOCAL_ONLY || defined SIGINTSIGNAL_MAIN(INT, "Interrupt")#endif#if !defined SIGNALS_LOCAL_ONLY || defined SIGTERMSIGNAL_MAIN(TERM, "Terminate")#endif#if !defined SIGNALS_LOCAL_ONLY || defined SIGKILLSIGNAL_MAIN(KILL, "Kill")#endif#if !defined SIGNALS_LOCAL_ONLY || defined SIGQUITSIGNAL_MAIN(QUIT, "Quit")#endif#if !defined SIGNALS_LOCAL_ONLY || defined SIGHUPSIGNAL_MAIN(HUP, "Hangup")#endif#if !defined SIGNALS_LOCAL_ONLY || defined SIGABRTSIGNAL_SUB(ABRT)#endif#if !defined SIGNALS_LOCAL_ONLY || defined SIGALRMSIGNAL_SUB(ALRM)#endif#if !defined SIGNALS_LOCAL_ONLY || defined SIGFPESIGNAL_SUB(FPE)#endif#if !defined SIGNALS_LOCAL_ONLY || defined SIGILLSIGNAL_SUB(ILL)#endif#if !defined SIGNALS_LOCAL_ONLY || defined SIGPIPESIGNAL_SUB(PIPE)#endif#if !defined SIGNALS_LOCAL_ONLY || defined SIGSEGVSIGNAL_SUB(SEGV)#endif#if !defined SIGNALS_LOCAL_ONLY || defined SIGUSR1SIGNAL_SUB(USR1)#endif#if !defined SIGNALS_LOCAL_ONLY || defined SIGUSR2SIGNAL_SUB(USR2)#endif
 |