Sync OpenBSD patchset 505:

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:
Tiago Cunha
2009-11-08 23:12:35 +00:00
parent 02438c01b7
commit 915031b049
3 changed files with 46 additions and 43 deletions

3
tmux.h
View File

@ -1,4 +1,4 @@
/* $Id: tmux.h,v 1.504 2009-11-08 23:11:23 tcunha Exp $ */
/* $Id: tmux.h,v 1.505 2009-11-08 23:12:35 tcunha Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@ -1564,6 +1564,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 */