Initial Import from SVN

This commit is contained in:
Matt Jenkins
2014-04-09 14:27:18 +01:00
parent 8976e834c4
commit 895f96d2f7
3153 changed files with 748589 additions and 0 deletions

27
sys/include/kernel.h Normal file
View File

@@ -0,0 +1,27 @@
/*
* Copyright (c) 1986 Regents of the University of California.
* All rights reserved. The Berkeley software License Agreement
* specifies the terms and conditions for redistribution.
*/
/*
* Global variables for the kernel
*/
/* 1.1 */
long hostid;
char hostname[MAXHOSTNAMELEN];
int hostnamelen;
/* 1.2 */
#include <sys/time.h>
struct timeval boottime;
struct timeval time;
struct timezone tz; /* XXX */
int adjdelta;
int hz;
int usechz; /* # microseconds per hz */
int lbolt; /* awoken once a second */
short avenrun[3];