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

Diff for /src/usr.bin/tmux/Attic/signal.c between version 1.9 and 1.10

version 1.9, 2016/01/19 15:59:12 version 1.10, 2016/10/10 21:29:23
Line 24 
Line 24 
   
 #include "tmux.h"  #include "tmux.h"
   
 struct event    ev_sighup;  static struct event     ev_sighup;
 struct event    ev_sigchld;  static struct event     ev_sigchld;
 struct event    ev_sigcont;  static struct event     ev_sigcont;
 struct event    ev_sigterm;  static struct event     ev_sigterm;
 struct event    ev_sigusr1;  static struct event     ev_sigusr1;
 struct event    ev_sigwinch;  static struct event     ev_sigwinch;
   
 void  void
 set_signals(void (*handler)(int, short, void *), void *arg)  set_signals(void (*handler)(int, short, void *), void *arg)

Legend:
Removed from v.1.9  
changed lines
  Added in v.1.10