diff options
author | Nicholas Marriott <nicm@cvs.openbsd.org> | 2009-11-05 08:48:16 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@cvs.openbsd.org> | 2009-11-05 08:48:16 +0000 |
commit | d2b5f6ec1ecb1e30ce5f13cf0d7c0dc0fd0fd333 (patch) | |
tree | da19c89a2f0b182cdda66ab7e8a9c7bd20fbc5a9 /usr.bin/tmux/tmux.h | |
parent | c821c4e927a4ba76c998a967a8359138017a6845 (diff) |
Now all timers are events, there is no longer any need to wake up every 50 ms -
only wake up when an event happens.
Diffstat (limited to 'usr.bin/tmux/tmux.h')
-rw-r--r-- | usr.bin/tmux/tmux.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/usr.bin/tmux/tmux.h b/usr.bin/tmux/tmux.h index 91332bd733e..2148451bf78 100644 --- a/usr.bin/tmux/tmux.h +++ b/usr.bin/tmux/tmux.h @@ -1,4 +1,4 @@ -/* $OpenBSD: tmux.h,v 1.170 2009/11/05 08:45:08 nicm Exp $ */ +/* $OpenBSD: tmux.h,v 1.171 2009/11/05 08:48:15 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -62,9 +62,6 @@ extern char **environ; /* Escape timer period, in milliseconds. */ #define ESCAPE_PERIOD 500 -/* Maximum poll timeout (when attached). */ -#define POLL_TIMEOUT 50 - /* Maximum data to buffer for output before suspending reading from panes. */ #define BACKOFF_THRESHOLD 1024 |