[BACK]Return to proc.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / tmux

Diff for /src/usr.bin/tmux/proc.c between version 1.13 and 1.14

version 1.13, 2017/07/12 12:35:31 version 1.14, 2017/07/14 08:04:23
Line 255 
Line 255 
         sigaction(SIGPIPE, &sa, NULL);          sigaction(SIGPIPE, &sa, NULL);
         sigaction(SIGTSTP, &sa, NULL);          sigaction(SIGTSTP, &sa, NULL);
   
         event_del(&tp->ev_sighup);          signal_del(&tp->ev_sighup);
         event_del(&tp->ev_sigchld);          signal_del(&tp->ev_sigchld);
         event_del(&tp->ev_sigcont);          signal_del(&tp->ev_sigcont);
         event_del(&tp->ev_sigterm);          signal_del(&tp->ev_sigterm);
         event_del(&tp->ev_sigusr1);          signal_del(&tp->ev_sigusr1);
         event_del(&tp->ev_sigusr2);          signal_del(&tp->ev_sigusr2);
         event_del(&tp->ev_sigwinch);          signal_del(&tp->ev_sigwinch);
 }  }
   
 struct tmuxpeer *  struct tmuxpeer *

Legend:
Removed from v.1.13  
changed lines
  Added in v.1.14