summaryrefslogtreecommitdiffstats
path: root/sys/vm/vm_pageout.h
diff options
context:
space:
mode:
authordg <dg@FreeBSD.org>1995-01-10 07:32:52 +0000
committerdg <dg@FreeBSD.org>1995-01-10 07:32:52 +0000
commit6491ec70c94d2868318fb8ca74a05d6adc0df93f (patch)
tree0c8d5592c860b90ad30278ed5e289263f2c60dd9 /sys/vm/vm_pageout.h
parent028f7bbfb069a4795ea82e3234c6f917d4c50490 (diff)
downloadFreeBSD-src-6491ec70c94d2868318fb8ca74a05d6adc0df93f.zip
FreeBSD-src-6491ec70c94d2868318fb8ca74a05d6adc0df93f.tar.gz
Fixed some formatting weirdness that I overlooked in the previous commit.
Diffstat (limited to 'sys/vm/vm_pageout.h')
-rw-r--r--sys/vm/vm_pageout.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/vm/vm_pageout.h b/sys/vm/vm_pageout.h
index 562a2ac..6a34d29 100644
--- a/sys/vm/vm_pageout.h
+++ b/sys/vm/vm_pageout.h
@@ -61,7 +61,7 @@
* any improvements or extensions that they make and grant Carnegie the
* rights to redistribute these changes.
*
- * $Id: vm_pageout.h,v 1.6 1994/10/09 01:52:16 phk Exp $
+ * $Id: vm_pageout.h,v 1.7 1995/01/09 16:05:54 davidg Exp $
*/
#ifndef _VM_VM_PAGEOUT_H_
@@ -101,11 +101,11 @@ vm_wait()
s = splhigh();
if (curproc == pageproc) {
vm_pageout_pages_needed = 1;
- tsleep((caddr_t) & vm_pageout_pages_needed, PSWP, "vmwait", 0);
+ tsleep((caddr_t) &vm_pageout_pages_needed, PSWP, "vmwait", 0);
vm_pageout_pages_needed = 0;
} else {
- wakeup((caddr_t) & vm_pages_needed);
- tsleep((caddr_t) & cnt.v_free_count, PVM, "vmwait", 0);
+ wakeup((caddr_t) &vm_pages_needed);
+ tsleep((caddr_t) &cnt.v_free_count, PVM, "vmwait", 0);
}
splx(s);
}
OpenPOWER on IntegriCloud