aboutsummaryrefslogtreecommitdiff
path: root/tmux.h
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2009-02-08 16:11:26 +0000
committerNicholas Marriott <nicholas.marriott@gmail.com>2009-02-08 16:11:26 +0000
commit62d2ab3e687bfc7e0a02adedee30314b8ef1b08b (patch)
treefe5a18bde27c761f87eb287c6c5cd4b4e9c71440 /tmux.h
parent85fd2147af097184e596e5bbbb521bd1f3c0a0f1 (diff)
downloadrtmux-62d2ab3e687bfc7e0a02adedee30314b8ef1b08b.tar.gz
rtmux-62d2ab3e687bfc7e0a02adedee30314b8ef1b08b.tar.bz2
rtmux-62d2ab3e687bfc7e0a02adedee30314b8ef1b08b.zip
Continue process if suspended.
Diffstat (limited to 'tmux.h')
-rw-r--r--tmux.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/tmux.h b/tmux.h
index 8f53d599..ddbd2e28 100644
--- a/tmux.h
+++ b/tmux.h
@@ -1,4 +1,4 @@
-/* $Id: tmux.h,v 1.259 2009-02-03 17:21:19 tcunha Exp $ */
+/* $Id: tmux.h,v 1.260 2009-02-08 16:11:26 nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -585,10 +585,12 @@ struct window_pane {
int flags;
#define PANE_HIDDEN 0x1
+#define PANE_RESTART 0x2
char *cmd;
char *cwd;
+ pid_t pid;
int fd;
char tty[TTY_NAME_MAX];
struct buffer *in;
@@ -610,7 +612,6 @@ TAILQ_HEAD(window_panes, window_pane);
struct window {
char *name;
struct timeval name_timer;
- pid_t pgrp;
struct window_pane *active;
struct window_panes panes;
@@ -974,6 +975,7 @@ char *fgetln(FILE *, size_t *);
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 struct options global_options;
extern struct options global_window_options;
extern char *cfg_file;