diff options
author | Nicholas Marriott <nicm@cvs.openbsd.org> | 2009-11-04 21:47:43 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@cvs.openbsd.org> | 2009-11-04 21:47:43 +0000 |
commit | 61f1e016a392ec594bd75c723836afda9e8af879 (patch) | |
tree | 9e4a33bd9e94ea82a64f94ea857ccda80f47e47a /usr.bin/tmux/tmux.h | |
parent | 4a10595dee0afa24fc6f3744ea05adc59019ae4e (diff) |
Switch tty fds over to a bufferevent.
Diffstat (limited to 'usr.bin/tmux/tmux.h')
-rw-r--r-- | usr.bin/tmux/tmux.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/usr.bin/tmux/tmux.h b/usr.bin/tmux/tmux.h index e7cefe869e9..9ed46d25707 100644 --- a/usr.bin/tmux/tmux.h +++ b/usr.bin/tmux/tmux.h @@ -1,4 +1,4 @@ -/* $OpenBSD: tmux.h,v 1.160 2009/11/04 21:04:43 nicm Exp $ */ +/* $OpenBSD: tmux.h,v 1.161 2009/11/04 21:47:42 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -1000,9 +1000,7 @@ struct tty { struct tty_term *term; int fd; - struct event event; - struct buffer *in; - struct buffer *out; + struct bufferevent *event; int log_fd; |