now have code for screen-size auto-detect for solaris, cool. :-)

This commit is contained in:
lindes 2001-08-28 01:01:10 +00:00
parent 67ca8c70ac
commit 19e4b032cd
1 changed files with 36 additions and 0 deletions

36
arch/SunOS/terminfo.c Normal file
View File

@ -0,0 +1,36 @@
/*
* arch/SunOS/terminfo.c -- routines for getting terminal
* information on Solaris (SunOS) machines.
*
* Copyright 2001, David Lindes. All rights reserved.
*/
#include <unistd.h> /* for ioctl() */
#include <termios.h> /* for TIOCGWINSZ */
#define _KMEMUSER /* something needs this in order
* for strsubr.h to be happy */
#include <sys/systm.h> /* sys/strsubr.h needs this */
#include <sys/poll.h> /* sys/strsubr.h needs this */
#include <sys/strsubr.h> /* sys/ptem.h needs this */
#include <sys/ptem.h> /* for struct winsize */
/* globals */
extern int rows;
extern int cols;
void gettermsize()
{
struct winsize info;
/* try to get data via IOCTL: */
if (ioctl(1 /* stdout */, TIOCGWINSZ, &info) != -1)
{
/* if successful, and the data seems sane, set the
* program's globals: */
if(info.ws_col > 0)
cols = info.ws_col;
if(info.ws_row > 0)
rows = info.ws_row;
}
}