diff options
author | dillon <dillon@FreeBSD.org> | 1999-01-21 09:51:21 +0000 |
---|---|---|
committer | dillon <dillon@FreeBSD.org> | 1999-01-21 09:51:21 +0000 |
commit | 04052d89f830e29b23b5533a6439d1a71b67747d (patch) | |
tree | fbc17f844d9ce3cebdb180426e9f4bf9fd471c07 | |
parent | 3f5f4e54cab675a2e81514bedf224485c4981422 (diff) | |
download | FreeBSD-src-04052d89f830e29b23b5533a6439d1a71b67747d.zip FreeBSD-src-04052d89f830e29b23b5533a6439d1a71b67747d.tar.gz |
The vm_object structure is now somewhat smaller due to the removal
of most of the swap-pager-specific fields, the removal of the id,
and the removal of paging_offset.
A new inline, vm_object_pip_wakeupn() has been added to subtract an
arbitrary number n from the paging_in_progress count and then wakeup
waiters as necessary. n may be 0, resulting in a 'flash'.
-rw-r--r-- | sys/vm/vm_object.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/vm/vm_object.h b/sys/vm/vm_object.h index 7f54ab6..5e45693 100644 --- a/sys/vm/vm_object.h +++ b/sys/vm/vm_object.h @@ -61,7 +61,7 @@ * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. * - * $Id: vm_object.h,v 1.51 1998/08/24 08:39:37 dfr Exp $ + * $Id: vm_object.h,v 1.52 1999/01/21 08:29:12 dillon Exp $ */ /* |