Deleted Added
full compact
vm_param.h (127961) vm_param.h (130640)
1/*
2 * Copyright (c) 1991, 1993
3 * The Regents of the University of California. All rights reserved.
4 *
5 * This code is derived from software contributed to Berkeley by
6 * The Mach Operating System project at Carnegie-Mellon University.
7 *
8 * Redistribution and use in source and binary forms, with or without

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

52 * Software Distribution Coordinator or Software.Distribution@CS.CMU.EDU
53 * School of Computer Science
54 * Carnegie Mellon University
55 * Pittsburgh PA 15213-3890
56 *
57 * any improvements or extensions that they make and grant Carnegie the
58 * rights to redistribute these changes.
59 *
1/*
2 * Copyright (c) 1991, 1993
3 * The Regents of the University of California. All rights reserved.
4 *
5 * This code is derived from software contributed to Berkeley by
6 * The Mach Operating System project at Carnegie-Mellon University.
7 *
8 * Redistribution and use in source and binary forms, with or without

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

52 * Software Distribution Coordinator or Software.Distribution@CS.CMU.EDU
53 * School of Computer Science
54 * Carnegie Mellon University
55 * Pittsburgh PA 15213-3890
56 *
57 * any improvements or extensions that they make and grant Carnegie the
58 * rights to redistribute these changes.
59 *
60 * $FreeBSD: head/sys/vm/vm_param.h 127961 2004-04-06 20:15:37Z imp $
60 * $FreeBSD: head/sys/vm/vm_param.h 130640 2004-06-17 17:16:53Z phk $
61 */
62
63/*
64 * Machine independent virtual memory parameters.
65 */
66
67#ifndef _VM_PARAM_
68#define _VM_PARAM_

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

102}
103
104/*
105 * Structure for swap device statistics
106 */
107#define XSWDEV_VERSION 1
108struct xswdev {
109 u_int xsw_version;
61 */
62
63/*
64 * Machine independent virtual memory parameters.
65 */
66
67#ifndef _VM_PARAM_
68#define _VM_PARAM_

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

102}
103
104/*
105 * Structure for swap device statistics
106 */
107#define XSWDEV_VERSION 1
108struct xswdev {
109 u_int xsw_version;
110 udev_t xsw_dev;
110 dev_t xsw_dev;
111 int xsw_flags;
112 int xsw_nblks;
113 int xsw_used;
114};
115
116/*
117 * Return values from the VM routines.
118 */

--- 23 unchanged lines hidden ---
111 int xsw_flags;
112 int xsw_nblks;
113 int xsw_used;
114};
115
116/*
117 * Return values from the VM routines.
118 */

--- 23 unchanged lines hidden ---