Fixed restoral of nsscons variable. The tty for /dev/console was lost.
A warning was introduced.
This commit is contained in:
parent
7a50b221e8
commit
3a4c46bd22
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=17870
@ -25,7 +25,7 @@
|
||||
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
||||
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
*
|
||||
* $Id: syscons.c,v 1.160 1996/07/30 15:20:08 ache Exp $
|
||||
* $Id: syscons.c,v 1.161 1996/08/16 10:16:32 peter Exp $
|
||||
*/
|
||||
|
||||
#include "sc.h"
|
||||
@ -140,7 +140,7 @@ struct tty *sccons[MAXCONS+1];
|
||||
#define VIRTUAL_TTY(x) &sccons[x]
|
||||
#define CONSOLE_TTY &sccons[MAXCONS]
|
||||
static struct tty sccons[MAXCONS+1];
|
||||
static int nsccons = MAXCONS; /* for pstat only */
|
||||
static const int nsccons = MAXCONS+1;
|
||||
#endif
|
||||
#define MONO_BUF pa_to_va(0xB0000)
|
||||
#define CGA_BUF pa_to_va(0xB8000)
|
||||
|
@ -25,7 +25,7 @@
|
||||
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
||||
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
*
|
||||
* $Id: syscons.c,v 1.160 1996/07/30 15:20:08 ache Exp $
|
||||
* $Id: syscons.c,v 1.161 1996/08/16 10:16:32 peter Exp $
|
||||
*/
|
||||
|
||||
#include "sc.h"
|
||||
@ -140,7 +140,7 @@ struct tty *sccons[MAXCONS+1];
|
||||
#define VIRTUAL_TTY(x) &sccons[x]
|
||||
#define CONSOLE_TTY &sccons[MAXCONS]
|
||||
static struct tty sccons[MAXCONS+1];
|
||||
static int nsccons = MAXCONS; /* for pstat only */
|
||||
static const int nsccons = MAXCONS+1;
|
||||
#endif
|
||||
#define MONO_BUF pa_to_va(0xB0000)
|
||||
#define CGA_BUF pa_to_va(0xB8000)
|
||||
|
@ -25,7 +25,7 @@
|
||||
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
||||
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
*
|
||||
* $Id: syscons.c,v 1.160 1996/07/30 15:20:08 ache Exp $
|
||||
* $Id: syscons.c,v 1.161 1996/08/16 10:16:32 peter Exp $
|
||||
*/
|
||||
|
||||
#include "sc.h"
|
||||
@ -140,7 +140,7 @@ struct tty *sccons[MAXCONS+1];
|
||||
#define VIRTUAL_TTY(x) &sccons[x]
|
||||
#define CONSOLE_TTY &sccons[MAXCONS]
|
||||
static struct tty sccons[MAXCONS+1];
|
||||
static int nsccons = MAXCONS; /* for pstat only */
|
||||
static const int nsccons = MAXCONS+1;
|
||||
#endif
|
||||
#define MONO_BUF pa_to_va(0xB0000)
|
||||
#define CGA_BUF pa_to_va(0xB8000)
|
||||
|
Loading…
Reference in New Issue
Block a user