summaryrefslogtreecommitdiffstats
path: root/tmux.h
diff options
context:
space:
mode:
authornicm <nicm>2015-08-28 12:16:28 +0000
committernicm <nicm>2015-08-28 12:16:28 +0000
commit75d10058a41d8e95dda126d460a119a9037e9345 (patch)
tree86acff4bc6433f9e8f76c5d241a2e1c8833368eb /tmux.h
parent18d4802a7bcfc08948dccfd9084144b043ac591b (diff)
Run status update on a per-client timer at status-interval.
Diffstat (limited to 'tmux.h')
-rw-r--r--tmux.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/tmux.h b/tmux.h
index 5859cc53..6b82e79c 100644
--- a/tmux.h
+++ b/tmux.h
@@ -1207,7 +1207,7 @@ struct client {
struct event repeat_timer;
- struct timeval status_timer;
+ struct event status_timer;
struct screen status;
#define CLIENT_TERMINAL 0x1
@@ -1893,6 +1893,8 @@ int server_set_stdin_callback(struct client *, void (*)(struct client *,
void server_unzoom_window(struct window *);
/* status.c */
+void status_timer_start(struct client *);
+void status_timer_start_all(void);
int status_at_line(struct client *);
struct window *status_get_window_at(struct client *, u_int);
int status_redraw(struct client *);