aboutsummaryrefslogtreecommitdiffstats
path: root/x0vncserver
diff options
context:
space:
mode:
authorConstantin Kaplinsky <const@tightvnc.com>2006-02-10 12:26:54 +0000
committerConstantin Kaplinsky <const@tightvnc.com>2006-02-10 12:26:54 +0000
commitef7ac9bcce901a3eb162b3487c5b3d77550705cc (patch)
treee753b84042594d8e7f9626ffae8e949db35a6fe7 /x0vncserver
parentaf2ebebeb578df8c14b0e340e99161bdcdc245ba (diff)
downloadtigervnc-ef7ac9bcce901a3eb162b3487c5b3d77550705cc.tar.gz
tigervnc-ef7ac9bcce901a3eb162b3487c5b3d77550705cc.zip
For the PollingCycle parameter, the default value has been changed
from 50 to 30 milliseconds. This should improve responsiveness for servers with fast CPUs. Also, that should not hurt slow servers, as actual interval would depend on the MaxProcessorUsage parameter. git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@482 3789f03b-4d11-0410-bbf8-ca57d06f2519
Diffstat (limited to 'x0vncserver')
-rw-r--r--x0vncserver/x0vncserver.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/x0vncserver/x0vncserver.cxx b/x0vncserver/x0vncserver.cxx
index f718164f..1ea2e817 100644
--- a/x0vncserver/x0vncserver.cxx
+++ b/x0vncserver/x0vncserver.cxx
@@ -53,7 +53,7 @@ LogWriter vlog("main");
IntParameter pollingCycle("PollingCycle", "Milliseconds per one polling "
"cycle; actual interval may be dynamically "
- "adjusted to satisfy MaxProcessorUsage setting", 50);
+ "adjusted to satisfy MaxProcessorUsage setting", 30);
IntParameter maxProcessorUsage("MaxProcessorUsage", "Maximum percentage of "
"CPU time to be consumed", 35);
BoolParameter useShm("UseSHM", "Use MIT-SHM extension if available", true);