diff options
author | nicm <nicm> | 2015-11-14 09:41:06 +0000 |
---|---|---|
committer | nicm <nicm> | 2015-11-14 09:41:06 +0000 |
commit | c56b81a2ce815f6d289232f20bb6e07cfd0e36ec (patch) | |
tree | 7a018a8f9d4354684ad5748e4d218fd8d3273fc5 /tmux.h | |
parent | 908e6bb68f127f2bdf0c15ac25dde9ccc06e9104 (diff) | |
download | rtmux-c56b81a2ce815f6d289232f20bb6e07cfd0e36ec.tar.gz rtmux-c56b81a2ce815f6d289232f20bb6e07cfd0e36ec.tar.bz2 rtmux-c56b81a2ce815f6d289232f20bb6e07cfd0e36ec.zip |
Push stdout and stderr to clients more aggressively, and add an event to
continue if the send fails.
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1781,6 +1781,8 @@ int server_client_open(struct client *, char **); void server_client_unref(struct client *); void server_client_lost(struct client *); void server_client_loop(void); +void server_client_push_stdout(struct client *); +void server_client_push_stderr(struct client *); /* server-fn.c */ void server_fill_environ(struct session *, struct environ *); @@ -1806,8 +1808,6 @@ void server_destroy_session(struct session *); void server_check_unattached(void); void server_set_identify(struct client *); void server_clear_identify(struct client *); -void server_push_stdout(struct client *); -void server_push_stderr(struct client *); int server_set_stdin_callback(struct client *, void (*)(struct client *, int, void *), void *, char **); void server_unzoom_window(struct window *); |