diff options
author | Tiago Cunha <tcunha@gmx.com> | 2009-11-08 23:12:35 +0000 |
---|---|---|
committer | Tiago Cunha <tcunha@gmx.com> | 2009-11-08 23:12:35 +0000 |
commit | 915031b0495591fcc53a4edbda14a33815218fdd (patch) | |
tree | e109c97750cc81b9be4a7e6e8611e0dfaa4bc1de /tmux.h | |
parent | 02438c01b72f0cf1c22d45d84d7dea808cc548d1 (diff) | |
download | rtmux-915031b0495591fcc53a4edbda14a33815218fdd.tar.gz rtmux-915031b0495591fcc53a4edbda14a33815218fdd.tar.bz2 rtmux-915031b0495591fcc53a4edbda14a33815218fdd.zip |
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.
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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 */ |