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

23
sys/include/msgbuf.h Normal file
View File

@@ -0,0 +1,23 @@
/*
* Copyright (c) 1986 Regents of the University of California.
* All rights reserved. The Berkeley software License Agreement
* specifies the terms and conditions for redistribution.
*/
#define MSG_MAGIC 0x063061
#define MSG_BSIZE 2048
struct msgbuf {
long msg_magic;
int msg_bufx;
int msg_bufr;
char msg_bufc [MSG_BSIZE];
};
#define logMSG 0 /* /dev/klog */
#ifdef KERNEL
/*
* Check that log is open by a user program.
*/
int logisopen (int unit);
#endif