diff options
author | Nicholas Marriott <nicm@cvs.openbsd.org> | 2009-11-13 17:33:08 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@cvs.openbsd.org> | 2009-11-13 17:33:08 +0000 |
commit | 3c6d57f8f67acbbbd7c47bd1815071189b8d069d (patch) | |
tree | eb7198de62d4814ea41c5a81dfd8e5d0c4e8fad5 /usr.bin/tmux/tmux.h | |
parent | 68f6c9fd5d85f99f464506d5e06d285831ff164e (diff) |
Destroy panes immediately rather than checking them all every loop.
Diffstat (limited to 'usr.bin/tmux/tmux.h')
-rw-r--r-- | usr.bin/tmux/tmux.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/tmux/tmux.h b/usr.bin/tmux/tmux.h index d5e3b5dcfea..c420fdd57f8 100644 --- a/usr.bin/tmux/tmux.h +++ b/usr.bin/tmux/tmux.h @@ -1,4 +1,4 @@ -/* $OpenBSD: tmux.h,v 1.176 2009/11/13 07:00:54 nicm Exp $ */ +/* $OpenBSD: tmux.h,v 1.177 2009/11/13 17:33:07 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -1590,6 +1590,7 @@ void server_kill_window(struct window *); int server_link_window(struct session *, struct winlink *, struct session *, int, int, int, char **); void server_unlink_window(struct session *, struct winlink *); +void server_destroy_pane(struct window_pane *); void server_destroy_session_group(struct session *); void server_destroy_session(struct session *); void server_set_identify(struct client *); |