From 8a3b34897083fc28742a10e9900a7511beaccd8e Mon Sep 17 00:00:00 2001 From: Kazutaka YOKOTA Date: Mon, 16 Jul 2001 05:21:24 +0000 Subject: MFC: - syscons.c rev 1.361 Test "sc->kbd != NULL" rather than "sc != NULL" before accessing the keyboard in scopen(). - syscons.c rev 1.363 If we are in DDB, don't switch to a vty in the VT_PROCESS mode. - syscons.h rev 1.68, scvtb.c rev 1.8 Don't free buffers we didn't allocate. - scmouse.c rev 1.24 Quit the ioctl MOUSE_GETINFO as soon as we have gathered necessary information. There is no need to stick around any longer. --- sys/dev/syscons/syscons.h | 1 + 1 file changed, 1 insertion(+) (limited to 'sys/dev/syscons/syscons.h') diff --git a/sys/dev/syscons/syscons.h b/sys/dev/syscons/syscons.h index a93ce33ecdb4..66fb1705a5a1 100644 --- a/sys/dev/syscons/syscons.h +++ b/sys/dev/syscons/syscons.h @@ -128,6 +128,7 @@ typedef struct sc_vtb { int vtb_flags; #define VTB_VALID (1 << 0) +#define VTB_ALLOCED (1 << 1) int vtb_type; #define VTB_INVALID 0 #define VTB_MEMORY 1 -- cgit v1.3