diff options
author | Tiago Cunha <tcunha@gmx.com> | 2009-11-08 23:09:36 +0000 |
---|---|---|
committer | Tiago Cunha <tcunha@gmx.com> | 2009-11-08 23:09:36 +0000 |
commit | bee17719d8212fa3ff87b4059727849bd3c807b2 (patch) | |
tree | f39a9402a6d1d3d89e2bca3eda02d3e6f84b31b8 /tmux.h | |
parent | 0cd4f4e321476a1e5e437241a9ed394474de3aee (diff) | |
download | rtmux-bee17719d8212fa3ff87b4059727849bd3c807b2.tar.gz rtmux-bee17719d8212fa3ff87b4059727849bd3c807b2.tar.bz2 rtmux-bee17719d8212fa3ff87b4059727849bd3c807b2.zip |
Sync OpenBSD patchset 503:
Don't reenlist the client imsg event every loop, instead have a small function
to it and call it after the event triggers or after a imsg is added.
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,4 +1,4 @@ -/* $Id: tmux.h,v 1.502 2009-11-08 23:05:36 tcunha Exp $ */ +/* $Id: tmux.h,v 1.503 2009-11-08 23:09:36 tcunha Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -1563,7 +1563,6 @@ void server_signal_clear(void); /* server-client.c */ void server_client_create(int); void server_client_lost(struct client *); -void server_client_prepare(void); void server_client_callback(int, short, void *); void server_client_loop(void); @@ -1597,6 +1596,7 @@ void server_destroy_session_group(struct session *); void server_destroy_session(struct session *); void server_set_identify(struct client *); void server_clear_identify(struct client *); +void server_update_event(struct client *); /* status.c */ int status_redraw(struct client *); |