diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2009-05-16 10:02:51 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2009-05-16 10:02:51 +0000 |
commit | 03af7c99b58d65cd9ec0a95e02658c152e18f41e (patch) | |
tree | 9027df02bbdf4d2c6556acaef4479b15dbd60c15 /tmux.h | |
parent | 92de1ad6c833ec8253e07be2a10689b7f5f2c9a6 (diff) | |
download | rtmux-03af7c99b58d65cd9ec0a95e02658c152e18f41e.tar.gz rtmux-03af7c99b58d65cd9ec0a95e02658c152e18f41e.tar.bz2 rtmux-03af7c99b58d65cd9ec0a95e02658c152e18f41e.zip |
Recreate server socket on SIGUSR1, per SF feature request 2792533.
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -1,4 +1,4 @@ -/* $Id: tmux.h,v 1.316 2009-05-14 19:36:56 nicm Exp $ */ +/* $Id: tmux.h,v 1.317 2009-05-16 10:02:51 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -1060,6 +1060,8 @@ extern volatile sig_atomic_t sigwinch; extern volatile sig_atomic_t sigterm; extern volatile sig_atomic_t sigcont; extern volatile sig_atomic_t sigchld; +extern volatile sig_atomic_t sigusr1; +extern volatile sig_atomic_t sigusr2; extern struct options global_options; extern struct options global_window_options; extern char *cfg_file; |