Move status timer check into the global once-per-second timer, this could maybe

be done better but one every second is better than once every 50 ms.
This commit is contained in:
Nicholas Marriott
2009-11-04 23:42:51 +00:00
parent b1264a7416
commit 946ed97273
3 changed files with 43 additions and 40 deletions

1
tmux.h
View File

@ -1565,6 +1565,7 @@ void server_signal_clear(void);
void server_client_create(int);
void server_client_lost(struct client *);
void server_client_callback(int, short, void *);
void server_client_status_timer(void);
void server_client_loop(void);
/* server-window.c */