diff options
author | Nicholas Marriott <nicm@openbsd.org> | 2009-09-07 21:01:50 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@openbsd.org> | 2009-09-07 21:01:50 +0000 |
commit | 51c95747d878405bcbe2077c5c27c6b1a87c48a8 (patch) | |
tree | 478546c5871bbbf64e189e1a89e89d5de3aa042a /tmux.h | |
parent | e323f6620d6d64da7c9337fa2e5f8f9f0deb4394 (diff) | |
download | rtmux-51c95747d878405bcbe2077c5c27c6b1a87c48a8.tar.gz rtmux-51c95747d878405bcbe2077c5c27c6b1a87c48a8.tar.bz2 rtmux-51c95747d878405bcbe2077c5c27c6b1a87c48a8.zip |
Reference count clients and sessions rather than relying on a saved index for
cmd-choose-*.
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -812,11 +812,14 @@ struct session { SLIST_HEAD(, session_alert) alerts; #define SESSION_UNATTACHED 0x1 /* not attached to any clients */ +#define SESSION_DEAD 0x2 int flags; struct termios tio; struct environ environ; + + int references; }; ARRAY_DECL(sessions, struct session *); @@ -939,6 +942,7 @@ struct client { #define CLIENT_SUSPENDED 0x40 #define CLIENT_BAD 0x80 #define CLIENT_IDENTIFY 0x100 +#define CLIENT_DEAD 0x200 int flags; struct timeval identify_timer; @@ -963,6 +967,8 @@ struct client { struct mode_key_data prompt_mdata; struct session *session; + + int references; }; ARRAY_DECL(clients, struct client *); @@ -1428,6 +1434,7 @@ const char *key_string_lookup_key(int); /* server.c */ extern struct clients clients; +extern struct clients dead_clients; int server_client_index(struct client *); int server_start(char *); @@ -1702,6 +1709,7 @@ char *default_window_name(struct window *); /* session.c */ extern struct sessions sessions; +extern struct sessions dead_sessions; void session_alert_add(struct session *, struct window *, int); void session_alert_cancel(struct session *, struct winlink *); int session_alert_has(struct session *, struct winlink *, int); |