Deleted Added
full compact
sys_machdep.c (1051) sys_machdep.c (2056)
1/*-
2 * Copyright (c) 1990 The Regents of the University of California.
3 * All rights reserved.
4 *
5 * This code is derived from software contributed to Berkeley by
6 * William Jolitz.
7 *
8 * Redistribution and use in source and binary forms, with or without

--- 20 unchanged lines hidden (view full) ---

29 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
30 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34 * SUCH DAMAGE.
35 *
36 * from: @(#)sys_machdep.c 5.5 (Berkeley) 1/19/91
1/*-
2 * Copyright (c) 1990 The Regents of the University of California.
3 * All rights reserved.
4 *
5 * This code is derived from software contributed to Berkeley by
6 * William Jolitz.
7 *
8 * Redistribution and use in source and binary forms, with or without

--- 20 unchanged lines hidden (view full) ---

29 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
30 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34 * SUCH DAMAGE.
35 *
36 * from: @(#)sys_machdep.c 5.5 (Berkeley) 1/19/91
37 * $Id: sys_machdep.c,v 1.3 1993/10/16 14:15:10 rgrimes Exp $
37 * $Id: sys_machdep.c,v 1.4 1994/01/31 10:27:01 davidg Exp $
38 */
39
38 */
39
40#include "param.h"
41#include "systm.h"
42#include "ioctl.h"
43#include "file.h"
44#include "time.h"
45#include "proc.h"
46#include "uio.h"
47#include "kernel.h"
48#include "mtio.h"
49#include "buf.h"
50#include "trace.h"
40#include <sys/param.h>
41#include <sys/systm.h>
42#include <sys/ioctl.h>
43#include <sys/file.h>
44#include <sys/time.h>
45#include <sys/proc.h>
46#include <sys/uio.h>
47#include <sys/kernel.h>
48#include <sys/mtio.h>
49#include <sys/buf.h>
50#include <sys/trace.h>
51
52#ifdef USER_LDT
51
52#ifdef USER_LDT
53#include "user.h"
54#include "machine/cpu.h"
55#include "machine/sysarch.h"
56#include "vm/vm_kern.h" /* for kernel_map */
53#include <sys/user.h>
54#include <machine/cpu.h>
55#include <machine/sysarch.h>
56#include <vm/vm_kern.h> /* for kernel_map */
57#endif
58
59#ifdef TRACE
60int nvualarm;
61
62struct vtrace_args {
63 int request;
64 int value;

--- 264 unchanged lines hidden ---
57#endif
58
59#ifdef TRACE
60int nvualarm;
61
62struct vtrace_args {
63 int request;
64 int value;

--- 264 unchanged lines hidden ---