From 8d127fbb7c77fb3db85a57e74220fa31180d44ee Mon Sep 17 00:00:00 2001 From: nicm Date: Mon, 25 Mar 2013 10:09:05 +0000 Subject: Add a wait-for command which blocks a client on a named channel until it is woken up again (with wait-for -S). From Thiago Padilha. --- usr.bin/tmux/tmux.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'usr.bin/tmux/tmux.h') diff --git a/usr.bin/tmux/tmux.h b/usr.bin/tmux/tmux.h index e287d2d9ac7..4893f62730b 100644 --- a/usr.bin/tmux/tmux.h +++ b/usr.bin/tmux/tmux.h @@ -1,4 +1,4 @@ -/* $OpenBSD: tmux.h,v 1.400 2013/03/25 10:05:35 nicm Exp $ */ +/* $OpenBSD: tmux.h,v 1.401 2013/03/25 10:09:07 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott @@ -1420,6 +1420,8 @@ struct cmd_q { void *data; struct msg_command_data *msgdata; + + TAILQ_ENTRY(cmd_q) waitentry; }; /* Command definition. */ @@ -1839,6 +1841,7 @@ extern const struct cmd_entry cmd_switch_client_entry; extern const struct cmd_entry cmd_unbind_key_entry; extern const struct cmd_entry cmd_unlink_window_entry; extern const struct cmd_entry cmd_up_pane_entry; +extern const struct cmd_entry cmd_wait_for_entry; /* cmd-attach-session.c */ enum cmd_retval cmd_attach_session(struct cmd_q *, const char*, int, int); -- cgit v1.2.3-59-g8ed1b