vm.h revision 50477
11541Srgrimes/*
21541Srgrimes * Copyright (c) 1991, 1993
31541Srgrimes *	The Regents of the University of California.  All rights reserved.
41541Srgrimes *
51541Srgrimes * Redistribution and use in source and binary forms, with or without
61541Srgrimes * modification, are permitted provided that the following conditions
71541Srgrimes * are met:
81541Srgrimes * 1. Redistributions of source code must retain the above copyright
91541Srgrimes *    notice, this list of conditions and the following disclaimer.
101541Srgrimes * 2. Redistributions in binary form must reproduce the above copyright
111541Srgrimes *    notice, this list of conditions and the following disclaimer in the
121541Srgrimes *    documentation and/or other materials provided with the distribution.
131541Srgrimes * 3. All advertising materials mentioning features or use of this software
141541Srgrimes *    must display the following acknowledgement:
151541Srgrimes *	This product includes software developed by the University of
161541Srgrimes *	California, Berkeley and its contributors.
171541Srgrimes * 4. Neither the name of the University nor the names of its contributors
181541Srgrimes *    may be used to endorse or promote products derived from this software
191541Srgrimes *    without specific prior written permission.
201541Srgrimes *
211541Srgrimes * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
221541Srgrimes * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
231541Srgrimes * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
241541Srgrimes * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
251541Srgrimes * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
261541Srgrimes * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
271541Srgrimes * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
281541Srgrimes * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
291541Srgrimes * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
301541Srgrimes * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
311541Srgrimes * SUCH DAMAGE.
321541Srgrimes *
331541Srgrimes *	@(#)vm.h	8.2 (Berkeley) 12/13/93
3450477Speter * $FreeBSD: head/sys/vm/vm.h 50477 1999-08-28 01:08:13Z peter $
351541Srgrimes */
361541Srgrimes
371541Srgrimes#ifndef VM_H
381541Srgrimes#define VM_H
391541Srgrimes
405455Sdgtypedef char vm_inherit_t;	/* XXX: inheritance codes */
4112662Sdgtypedef u_char vm_prot_t;	/* protection codes */
421541Srgrimes
431541Srgrimesunion vm_map_object;
441541Srgrimestypedef union vm_map_object vm_map_object_t;
451541Srgrimes
461541Srgrimesstruct vm_map_entry;
471541Srgrimestypedef struct vm_map_entry *vm_map_entry_t;
481541Srgrimes
491541Srgrimesstruct vm_map;
501541Srgrimestypedef struct vm_map *vm_map_t;
511541Srgrimes
521541Srgrimesstruct vm_object;
531541Srgrimestypedef struct vm_object *vm_object_t;
541541Srgrimes
5512642Sbde#ifndef KERNEL
5612642Sbde/*
5712710Sbde * This is defined in <sys/types.h> for the kernel so that non-vm kernel
5812710Sbde * sources (mainly Mach-derived ones such as ddb) don't have to include
5912710Sbde * vm stuff.  Defining it there for applications might break things.
6012710Sbde * Define it here for "applications" that include vm headers (e.g.,
6112710Sbde * genassym).
6212710Sbde */
6312710Sbdetypedef int boolean_t;
6412710Sbde
6512710Sbde/*
6612642Sbde * This is defined in <sys/types.h> for the kernel so that vnode_if.h
6712642Sbde * doesn't have to include <vm/vm.h>.
6812642Sbde */
691541Srgrimesstruct vm_page;
705455Sdgtypedef struct vm_page *vm_page_t;
7112642Sbde#endif
721541Srgrimes
735455Sdg#endif				/* VM_H */
74