1999-04-10 17:52:11 +04:00
|
|
|
/* $NetBSD: vm_extern.h,v 1.44 1999/04/10 13:52:11 drochner Exp $ */
|
1994-06-29 10:39:25 +04:00
|
|
|
|
1994-05-23 07:11:20 +04:00
|
|
|
/*-
|
|
|
|
* Copyright (c) 1992, 1993
|
|
|
|
* The Regents of the University of California. All rights reserved.
|
1994-04-15 12:14:27 +04:00
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
1998-03-01 05:20:01 +03:00
|
|
|
* @(#)vm_extern.h 8.5 (Berkeley) 5/3/95
|
1994-04-15 12:14:27 +04:00
|
|
|
*/
|
|
|
|
|
1994-04-28 07:51:58 +04:00
|
|
|
struct buf;
|
|
|
|
struct loadavg;
|
|
|
|
struct proc;
|
1998-03-27 04:46:20 +03:00
|
|
|
struct pmap;
|
1994-04-28 07:51:58 +04:00
|
|
|
struct vmspace;
|
|
|
|
struct vmtotal;
|
|
|
|
struct mount;
|
|
|
|
struct vnode;
|
1996-02-05 04:53:47 +03:00
|
|
|
struct core;
|
1994-04-28 07:51:58 +04:00
|
|
|
|
1995-03-27 00:35:13 +04:00
|
|
|
#ifdef _KERNEL
|
1994-05-07 02:45:29 +04:00
|
|
|
|
1994-05-23 07:11:20 +04:00
|
|
|
void iprintf __P((void (*)(const char *, ...), const char *, ...));
|
1997-02-05 11:09:45 +03:00
|
|
|
void thread_sleep_msg __P((void *, simple_lock_t,
|
1998-01-31 07:02:39 +03:00
|
|
|
boolean_t, char *, int));
|
1997-02-05 11:09:45 +03:00
|
|
|
|
1997-01-03 21:03:14 +03:00
|
|
|
/*
|
|
|
|
* This define replaces the thread_wakeup prototype, as thread_wakeup
|
|
|
|
* was solely a wrapper around wakeup.
|
|
|
|
*
|
|
|
|
* void thread_wakeup __P((void *));
|
|
|
|
*/
|
|
|
|
#define thread_wakeup wakeup
|
1996-02-05 04:53:47 +03:00
|
|
|
|
|
|
|
/* Machine dependent portion */
|
1998-08-13 06:10:37 +04:00
|
|
|
void vmapbuf __P((struct buf *, vsize_t));
|
|
|
|
void vunmapbuf __P((struct buf *, vsize_t));
|
1996-04-23 16:25:23 +04:00
|
|
|
void pagemove __P((caddr_t, caddr_t, size_t));
|
1996-02-05 23:32:25 +03:00
|
|
|
void cpu_fork __P((struct proc *, struct proc *));
|
1996-04-23 16:25:23 +04:00
|
|
|
#ifndef cpu_swapin
|
|
|
|
void cpu_swapin __P((struct proc *));
|
|
|
|
#endif
|
|
|
|
#ifndef cpu_swapout
|
|
|
|
void cpu_swapout __P((struct proc *));
|
|
|
|
#endif
|
1996-02-05 04:53:47 +03:00
|
|
|
|
1994-05-23 07:11:20 +04:00
|
|
|
#endif
|