Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 23 Oct 2013 13:35:46 +0000 (UTC)
From:      Aleksandr Rybalko <ray@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-user@freebsd.org
Subject:   svn commit: r256964 - user/ed/newcons/sys/dev/vt
Message-ID:  <201310231335.r9NDZk6K089176@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: ray
Date: Wed Oct 23 13:35:46 2013
New Revision: 256964
URL: http://svnweb.freebsd.org/changeset/base/256964

Log:
  Add new vt_buf flag VBF_HISTORY_FULL - whole history filled.
  
  Sponsored by:	The FreeBSD Foundation

Modified:
  user/ed/newcons/sys/dev/vt/vt.h

Modified: user/ed/newcons/sys/dev/vt/vt.h
==============================================================================
--- user/ed/newcons/sys/dev/vt/vt.h	Wed Oct 23 13:32:52 2013	(r256963)
+++ user/ed/newcons/sys/dev/vt/vt.h	Wed Oct 23 13:35:46 2013	(r256964)
@@ -120,6 +120,7 @@ struct vt_buf {
 #define	VBF_STATIC	0x2	/* Buffer is statically allocated. */
 #define	VBF_MTX_INIT	0x4	/* Mutex initialized. */
 #define	VBF_SCROLL	0x8	/* scroll locked mode. */
+#define	VBF_HISTORY_FULL 0x10	/* All rows filled. */
 	int			 vb_history_size;
 #define	VBF_DEFAULT_HISTORY_SIZE	200
 	int			 vb_roffset;	/* (b) History rows offset. */



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201310231335.r9NDZk6K089176>