Deleted Added
full compact
vm_object.h (65103) vm_object.h (75523)
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

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

56 * Software Distribution Coordinator or Software.Distribution@CS.CMU.EDU
57 * School of Computer Science
58 * Carnegie Mellon University
59 * Pittsburgh PA 15213-3890
60 *
61 * any improvements or extensions that they make and grant Carnegie the
62 * rights to redistribute these changes.
63 *
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

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

56 * Software Distribution Coordinator or Software.Distribution@CS.CMU.EDU
57 * School of Computer Science
58 * Carnegie Mellon University
59 * Pittsburgh PA 15213-3890
60 *
61 * any improvements or extensions that they make and grant Carnegie the
62 * rights to redistribute these changes.
63 *
64 * $FreeBSD: head/sys/vm/vm_object.h 65103 2000-08-26 04:51:39Z obrien $
64 * $FreeBSD: head/sys/vm/vm_object.h 75523 2001-04-15 10:22:04Z alfred $
65 */
66
67/*
68 * Virtual memory object module definitions.
69 */
70
71#ifndef _VM_OBJECT_
72#define _VM_OBJECT_

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

157#define OBJPC_SYNC 0x1 /* sync I/O */
158#define OBJPC_INVAL 0x2 /* invalidate */
159#define OBJPC_NOSYNC 0x4 /* skip if PG_NOSYNC */
160
161TAILQ_HEAD(object_q, vm_object);
162
163extern struct object_q vm_object_list; /* list of allocated objects */
164
65 */
66
67/*
68 * Virtual memory object module definitions.
69 */
70
71#ifndef _VM_OBJECT_
72#define _VM_OBJECT_

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

157#define OBJPC_SYNC 0x1 /* sync I/O */
158#define OBJPC_INVAL 0x2 /* invalidate */
159#define OBJPC_NOSYNC 0x4 /* skip if PG_NOSYNC */
160
161TAILQ_HEAD(object_q, vm_object);
162
163extern struct object_q vm_object_list; /* list of allocated objects */
164
165 /* lock for object list and count */
166
167extern vm_object_t kernel_object; /* the single kernel object */
168extern vm_object_t kmem_object;
169
170#endif /* _KERNEL */
171
172#ifdef _KERNEL
173
174static __inline void

--- 84 unchanged lines hidden ---
165extern vm_object_t kernel_object; /* the single kernel object */
166extern vm_object_t kmem_object;
167
168#endif /* _KERNEL */
169
170#ifdef _KERNEL
171
172static __inline void

--- 84 unchanged lines hidden ---