summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordg <dg@FreeBSD.org>1995-07-10 08:53:22 +0000
committerdg <dg@FreeBSD.org>1995-07-10 08:53:22 +0000
commitd088fb31faee2d2de7b1020be7d1f903f41c8765 (patch)
tree6b676ac99d1b8eaadeba5f5838675b485f8b791e
parente2d951bea4a91d0c1edc6bd7f99734136330065d (diff)
downloadFreeBSD-src-d088fb31faee2d2de7b1020be7d1f903f41c8765.zip
FreeBSD-src-d088fb31faee2d2de7b1020be7d1f903f41c8765.tar.gz
swapout_threads() -> swapout_procs().
-rw-r--r--sys/vm/vm_extern.h4
-rw-r--r--sys/vm/vm_glue.c4
-rw-r--r--sys/vm/vm_pageout.c4
3 files changed, 6 insertions, 6 deletions
diff --git a/sys/vm/vm_extern.h b/sys/vm/vm_extern.h
index 997f41a..db93e13 100644
--- a/sys/vm/vm_extern.h
+++ b/sys/vm/vm_extern.h
@@ -31,7 +31,7 @@
* SUCH DAMAGE.
*
* @(#)vm_extern.h 8.2 (Berkeley) 1/12/94
- * $Id: vm_extern.h,v 1.14 1995/05/10 18:56:04 davidg Exp $
+ * $Id: vm_extern.h,v 1.15 1995/05/14 03:00:09 davidg Exp $
*/
#ifndef _VM_EXTERN_H_
@@ -100,7 +100,7 @@ int pager_cache __P((vm_object_t, boolean_t));
void sched __P((void));
int swaponvp __P((struct proc *, struct vnode *, dev_t , u_long ));
void swapout __P((struct proc *));
-void swapout_threads __P((void));
+void swapout_procs __P((void));
void swstrategy __P((struct buf *));
void thread_block __P((char *));
void thread_sleep __P((int, simple_lock_t, boolean_t));
diff --git a/sys/vm/vm_glue.c b/sys/vm/vm_glue.c
index 5e26710..90c5d7b 100644
--- a/sys/vm/vm_glue.c
+++ b/sys/vm/vm_glue.c
@@ -59,7 +59,7 @@
* any improvements or extensions that they make and grant Carnegie the
* rights to redistribute these changes.
*
- * $Id: vm_glue.c,v 1.20 1995/05/30 08:16:01 rgrimes Exp $
+ * $Id: vm_glue.c,v 1.21 1995/07/10 08:48:58 davidg Exp $
*/
#include <sys/param.h>
@@ -405,7 +405,7 @@ extern int vm_pageout_free_min;
* if any, otherwise the longest-resident process.
*/
void
-swapout_threads()
+swapout_procs()
{
register struct proc *p;
struct proc *outp, *outp2;
diff --git a/sys/vm/vm_pageout.c b/sys/vm/vm_pageout.c
index c4c351f..55e7d0e 100644
--- a/sys/vm/vm_pageout.c
+++ b/sys/vm/vm_pageout.c
@@ -65,7 +65,7 @@
* any improvements or extensions that they make and grant Carnegie the
* rights to redistribute these changes.
*
- * $Id: vm_pageout.c,v 1.50 1995/05/21 21:39:31 davidg Exp $
+ * $Id: vm_pageout.c,v 1.51 1995/05/30 08:16:18 rgrimes Exp $
*/
/*
@@ -886,7 +886,7 @@ vm_daemon()
while (TRUE) {
tsleep((caddr_t) &vm_daemon_needed, PUSER, "psleep", 0);
if( vm_pageout_req_swapout) {
- swapout_threads();
+ swapout_procs();
vm_pageout_req_swapout = 0;
}
/*
OpenPOWER on IntegriCloud