AUSAM/sys106/systm.h

Compare this file to the similar file:
Show the results in this format:

/*
 * Random set of variables
 * used by more than one
 * routine.
 */
#ifndef VICAR
char	canonb[CANBSIZ];	/* buffer for erase and kill (#@) */
#endif
#ifdef VICAR
#define	canonb	u.u_heap	/* buffer for erase and kill (#@) */
#endif
int	coremap[CMAPSIZ];	/* space for core allocation */
int	swapmap[SMAPSIZ];	/* space for swap allocation */
#ifdef	MALLOC_UMAP
int	umap[UMAPSIZ];		/* space for UNIBUS-MAP allocation */
#endif	MALLOC_UMAP
struct inode *rootdir;		/* pointer to inode of root directory */
int	cputype;		/* type of cpu =40, 45, or 70 */
int	execnt;			/* number of processes in exec */
int	lbolt;			/* time of day in 60th not in time */
long	time;			/* time in sec from 1970 */  /* fix000 */
#ifndef	NEW_SLEEP
long	tout;			/* time of day of next sleep */  /* fix000 */
#endif
#ifdef MAPPED_BUFFERS
unsigned bufarea;
#endif MAPPED_BUFFERS

#ifndef NEW_TIMEOUT
/*
 * The callout structure is for
 * a routine arranging
 * to be called by the clock interrupt
 * (clock.c) with a specified argument,
 * in a specified amount of time.
 * Used, for example, to time tab
 * delays on teletypes.
 */
struct	callo
{
	int	c_time;		/* incremental time */
	int	c_arg;		/* argument to routine */
	int	(*c_func)();	/* routine */
} callout[NCALL];
#endif

#ifdef	NEW_TIMEOUT
/*
 * The timout structure is a redefinition
 * of a clist block used to store timeout
 * information as for a callout above.
 */
struct	timout	{
	struct	timout	*t_next;
	int		t_arg;
	int		(*t_func)();
	int		t_time;
}
	timouts;

#define tfreelist	timouts.t_func.t_next	/* the timeout reserve freelist */
#define tfreecount	timouts.t_time		/* number of blocks in reserve freelist */
#define toverloadcount	timouts.t_arg		/* number of times the freelists were empty */
#endif

/*
 * Mount structure.
 * One allocated on every mount.
 * Used to find the super block.
 */
struct	mount
{
	int	m_dev;		/* device mounted */
	int	*m_bufp;	/* pointer to superblock */
	int	*m_inodp;	/* pointer to mounted on inode */
} mount[NMOUNT];

#ifdef	AUSAML
struct lnode lnode [ MAXUSERS ];
#endif	AUSAML

int	mpid;			/* generic for unique process id's */
char	runin;			/* scheduling flag */
char	runout;			/* scheduling flag */
char	runrun;			/* scheduling flag */
char	curpri;			/* more scheduling */
unsigned maxmem;		/* actual max memory per process */ /* fix000 */
int	*lks;			/* pointer to clock device */
unsigned rootdev;		/* dev of root see conf.c */ /* fix000 */
unsigned swapdev;		/* dev of swap see conf.c */ /* fix000 */
int	swplo;			/* block number of swap space */
int	nswap;			/* size of swap space */
int	updlock;		/* lock for sync */
int	rablock;		/* block to be read ahead */
char	regloc[];		/* locs. of saved user registers (trap.c) */

#ifdef	MAPPED_BUFFERS
int	bufscr[101];
#endif	MAPPED_BUFFERS