svn commit: r257296 - user/ed/newcons/sys/dev/vt

Nathan Whitehorn nwhitehorn at FreeBSD.org
Tue Oct 29 00:56:22 UTC 2013


Author: nwhitehorn
Date: Tue Oct 29 00:56:21 2013
New Revision: 257296
URL: http://svnweb.freebsd.org/changeset/base/257296

Log:
  Remove some local changes unrelated to r257294.

Modified:
  user/ed/newcons/sys/dev/vt/vt_core.c

Modified: user/ed/newcons/sys/dev/vt/vt_core.c
==============================================================================
--- user/ed/newcons/sys/dev/vt/vt_core.c	Tue Oct 29 00:53:17 2013	(r257295)
+++ user/ed/newcons/sys/dev/vt/vt_core.c	Tue Oct 29 00:56:21 2013	(r257296)
@@ -79,14 +79,14 @@ const struct terminal_class vt_termclass
 };
 
 /*
- * Use a constant timer of 50 Hz to redraw the screen.
+ * Use a constant timer of 25 Hz to redraw the screen.
  *
  * XXX: In theory we should only fire up the timer when there is really
  * activity. Unfortunately we cannot always start timers. We really
  * don't want to process kernel messages synchronously, because it
  * really slows down the system.
  */
-#define	VT_TIMERFREQ	50
+#define	VT_TIMERFREQ	25
 
 /* Bell pitch/duration. */
 #define VT_BELLDURATION	((5 * hz + 99) / 100)


More information about the svn-src-user mailing list