Increase name refresh interval to 250 ms to reduce CPU use.

This commit is contained in:
Nicholas Marriott 2009-02-09 16:11:26 +00:00
parent 8c7c4423e1
commit 9d90d9ad70

4
tmux.h
View File

@ -1,4 +1,4 @@
/* $Id: tmux.h,v 1.260 2009-02-08 16:11:26 nicm Exp $ */
/* $Id: tmux.h,v 1.261 2009-02-09 16:11:26 nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@ -124,7 +124,7 @@ extern const char *__progname;
#define PANE_MINIMUM 4 /* includes separator line */
/* Automatic name refresh interval, in milliseconds. */
#define NAME_INTERVAL 100
#define NAME_INTERVAL 250
/* Fatal errors. */
#define fatal(msg) log_fatal("%s: %s", __func__, msg);