being breakup into kernel.h sanely
[unix-history] / usr / src / sys / sys / systm.h
/* systm.h 4.26 82/09/04 */
/*
* Random set of variables
* used by more than one
* routine.
*/
int hz; /* frequency of the clock */
int timezone; /* minutes west from greenwich */
int dstflag; /* daylight savings time in effect? */
char version[]; /* system version */
int lbolt; /* time of day in 60th not in time */
int hand; /* current index into coremap used by daemon */
/*
* Nblkdev is the number of entries
* (rows) in the block switch. It is
* set in binit/bio.c by making
* a pass over the switch.
* Used in bounds checking on major
* device numbers.
*/
int nblkdev;
/*
* Number of character switch entries.
* Set by cinit/prim.c
*/
int nchrdev;
int nswdev; /* number of swap devices */
int mpid; /* generic for unique process id's */
char runin; /* scheduling flag */
char runout; /* scheduling flag */
int runrun; /* scheduling flag */
char kmapwnt; /* kernel map want flag */
char curpri; /* more scheduling */
int maxmem; /* actual max memory per process */
int physmem; /* physical memory on this CPU */
int nswap; /* size of swap space */
int updlock; /* lock for sync */
daddr_t rablock; /* block to be read ahead */
int rasize; /* size of block in rablock */
extern int intstack[]; /* stack for interrupts */
dev_t rootdev; /* device of the root */
dev_t dumpdev; /* device to take dumps on */
long dumplo; /* offset into dumpdev */
dev_t swapdev; /* swapping device */
dev_t argdev; /* device for argument lists */
dev_t pipedev; /* pipe device */
extern int icode[]; /* user init code */
extern int szicode; /* its size */
extern int mcode[]; /* MUSH: startup code */
extern int szmcode; /* & its size */
dev_t getmdev();
daddr_t bmap();
caddr_t calloc();
unsigned max();
unsigned min();
int memall();
int uchar(), schar();
int vmemall();
caddr_t wmemall();
swblk_t vtod();
/*
* Structure of the system-entry table
*/
extern struct sysent
{
int sy_narg; /* total number of arguments */
int (*sy_call)(); /* handler */
} sysent[];
char vmmap[]; /* poor name! */
int umbabeg,umbaend; /* where sensitive vm begins/ends */
int noproc; /* no one is running just now */
extern int catcher[256];
char *panicstr;
int wantin;
int boothowto; /* reboot flags, from console subsystem */
int selwait;
/* casts to keep lint happy */
#define insque(q,p) _insque((caddr_t)q,(caddr_t)p)
#define remque(q) _remque((caddr_t)q)
#define queue(q,p) _queue((caddr_t)q,(caddr_t)p)
#define dequeue(q) _dequeue((caddr_t)q)