We've never supported these interfaces.

This commit is contained in:
mycroft 1999-01-24 13:23:15 +00:00
parent 94895652e1
commit 69c7326810
3 changed files with 2 additions and 108 deletions

View File

@ -1,4 +1,4 @@
# $NetBSD: Makefile,v 1.5 1999/01/12 03:08:14 kleink Exp $
# $NetBSD: Makefile,v 1.6 1999/01/24 13:23:15 mycroft Exp $
KDIR= /sys/sys
INCSDIR= /usr/include/sys
@ -17,7 +17,7 @@ INCS= acct.h ataio.h audioio.h buf.h callout.h cdefs.h cdio.h chio.h \
swap.h syslimits.h syslog.h systm.h tablet.h termios.h time.h timeb.h \
timepps.h times.h timex.h tprintf.h trace.h tty.h ttychars.h \
ttycom.h ttydefaults.h ttydev.h types.h ucred.h uio.h un.h unistd.h \
unpcb.h user.h utsname.h vadvise.h vcmd.h vlimit.h vmmeter.h vnode.h \
unpcb.h user.h utsname.h vadvise.h vmmeter.h vnode.h \
vnode_if.h vsio.h wait.h
SYMLINKS= sys/fcntl.h /usr/include/fcntl.h \

View File

@ -1,50 +0,0 @@
/* $NetBSD: vcmd.h,v 1.7 1997/01/22 07:09:32 mikel Exp $ */
/*-
* Copyright (c) 1982, 1986, 1993
* The Regents of the University of California. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. All advertising materials mentioning features or use of this software
* must display the following acknowledgement:
* This product includes software developed by the University of
* California, Berkeley and its contributors.
* 4. Neither the name of the University nor the names of its contributors
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
* @(#)vcmd.h 8.1 (Berkeley) 6/2/93
*/
#ifndef _SYS_VCMD_H_
#define _SYS_VCMD_H_
#include <sys/ioctl.h>
#define VPRINT 0100
#define VPLOT 0200
#define VPRINTPLOT 0400
#define VGETSTATE _IOR('v', 0, int)
#define VSETSTATE _IOW('v', 1, int)
#endif /* !_SYS_VCMD_H_ */

View File

@ -1,56 +0,0 @@
/* $NetBSD: vlimit.h,v 1.7 1997/01/22 07:09:32 mikel Exp $ */
/*-
* Copyright (c) 1982, 1986, 1993
* The Regents of the University of California. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. All advertising materials mentioning features or use of this software
* must display the following acknowledgement:
* This product includes software developed by the University of
* California, Berkeley and its contributors.
* 4. Neither the name of the University nor the names of its contributors
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
* @(#)vlimit.h 8.1 (Berkeley) 6/2/93
*/
#ifndef _SYS_VLIMIT_H_
#define _SYS_VLIMIT_H_
/*
* Limits for u.u_limit[i], per process, inherited.
*/
#define LIM_NORAISE 0 /* if <> 0, can't raise limits */
#define LIM_CPU 1 /* max secs cpu time */
#define LIM_FSIZE 2 /* max size of file created */
#define LIM_DATA 3 /* max growth of data space */
#define LIM_STACK 4 /* max growth of stack */
#define LIM_CORE 5 /* max size of ``core'' file */
#define LIM_MAXRSS 6 /* max desired data+stack core usage */
#define NLIMITS 6
#define INFINITY 0x7fffffff
#endif /* !_SYS_VLIMIT_H_ */