diff options
author | Tiago Cunha <tcunha@gmx.com> | 2009-11-08 23:02:56 +0000 |
---|---|---|
committer | Tiago Cunha <tcunha@gmx.com> | 2009-11-08 23:02:56 +0000 |
commit | 2df08827223872cd6b3ac1df527e55c2275a08cc (patch) | |
tree | fb8469066812b92a57e837a1c9b8e338a8968071 /server.c | |
parent | 70b2f1981e76794f0de84427df733fc2e5eb5242 (diff) | |
download | rtmux-2df08827223872cd6b3ac1df527e55c2275a08cc.tar.gz rtmux-2df08827223872cd6b3ac1df527e55c2275a08cc.tar.bz2 rtmux-2df08827223872cd6b3ac1df527e55c2275a08cc.zip |
Sync OpenBSD patchset 498:
Convert the window pane (pty master side) fd over to use a bufferevent.
The evbuffer API is very similar to the existing tmux buffer API so this was
remarkably painless. Not many possible ways to do it, I suppose.
Diffstat (limited to 'server.c')
-rw-r--r-- | server.c | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -1,4 +1,4 @@ -/* $Id: server.c,v 1.219 2009-11-08 23:00:44 tcunha Exp $ */ +/* $Id: server.c,v 1.220 2009-11-08 23:02:56 tcunha Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -218,7 +218,6 @@ server_loop(void) while (!server_should_shutdown()) { server_update_socket(); - server_window_prepare(); server_client_prepare(); event_loopexit(&tv); |