/**
* mutt_sig_unblock_system - Restore previously blocked signals
- * @param catch If true, restore previous SIGINT, SIGQUIT behaviour
+ * @param restore If true, restore previous SIGINT, SIGQUIT behaviour
*/
-void mutt_sig_unblock_system(bool catch)
+void mutt_sig_unblock_system(bool restore)
{
if (!SysSignalsBlocked)
return;
sigprocmask(SIG_UNBLOCK, &SigsetSys, NULL);
- if (catch)
+ if (restore)
{
sigaction(SIGQUIT, &SysOldQuit, NULL);
sigaction(SIGINT, &SysOldInt, NULL);
void mutt_sig_exit_handler(int sig);
void mutt_sig_init(sig_handler_t sig_fn, sig_handler_t exit_fn, sig_handler_t segv_fn);
void mutt_sig_unblock(void);
-void mutt_sig_unblock_system(bool catch);
+void mutt_sig_unblock_system(bool restore);
#endif /* MUTT_LIB_SIGNAL_H */