=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/tmux/tmux.h,v retrieving revision 1.625 retrieving revision 1.626 diff -c -r1.625 -r1.626 *** src/usr.bin/tmux/tmux.h 2016/04/29 13:21:33 1.625 --- src/usr.bin/tmux/tmux.h 2016/04/29 13:36:10 1.626 *************** *** 1,4 **** ! /* $OpenBSD: tmux.h,v 1.625 2016/04/29 13:21:33 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott --- 1,4 ---- ! /* $OpenBSD: tmux.h,v 1.626 2016/04/29 13:36:10 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott *************** *** 60,74 **** /* Automatic name refresh interval, in microseconds. Must be < 1 second. */ #define NAME_INTERVAL 500000 ! /* ! * READ_SIZE is the maximum size of data to hold from a pty (the event high ! * watermark). READ_BACKOFF is the amount of data waiting to be output to a tty ! * before pty reads will be backed off. READ_TIME is how long to back off ! * before the next read (in microseconds) if a tty is above READ_BACKOFF. ! */ ! #define READ_SIZE 1024 ! #define READ_BACKOFF 512 ! #define READ_TIME 100 /* Attribute to make gcc check printf-like arguments. */ #define printflike(a, b) __attribute__ ((format (printf, a, b))) --- 60,67 ---- /* Automatic name refresh interval, in microseconds. Must be < 1 second. */ #define NAME_INTERVAL 500000 ! /* The maximum amount of data to hold from a pty (the event high watermark). */ ! #define READ_SIZE 128 /* Attribute to make gcc check printf-like arguments. */ #define printflike(a, b) __attribute__ ((format (printf, a, b))) *************** *** 889,895 **** int fd; struct bufferevent *event; - struct event timer; struct input_ctx *ictx; --- 882,887 ----