summaryrefslogtreecommitdiff
path: root/usr.bin/tmux/tmux.h
diff options
context:
space:
mode:
authorNicholas Marriott <nicm@cvs.openbsd.org>2009-11-04 23:42:52 +0000
committerNicholas Marriott <nicm@cvs.openbsd.org>2009-11-04 23:42:52 +0000
commitd139043c80e30af1d1336dda9a15bd8e3d52306e (patch)
treec99041e278cabb5ad070be3c758cb0d4b12c6d40 /usr.bin/tmux/tmux.h
parent19daa3940ff1a5efcad8306ad6ecda6d708dbd4e (diff)
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 'usr.bin/tmux/tmux.h')
-rw-r--r--usr.bin/tmux/tmux.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/tmux/tmux.h b/usr.bin/tmux/tmux.h
index 3484032022d..2250bd6251a 100644
--- a/usr.bin/tmux/tmux.h
+++ b/usr.bin/tmux/tmux.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: tmux.h,v 1.166 2009/11/04 23:29:42 nicm Exp $ */
+/* $OpenBSD: tmux.h,v 1.167 2009/11/04 23:42:51 nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -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 */