summaryrefslogtreecommitdiff
path: root/sys/vm/vm_object.h
diff options
context:
space:
mode:
Diffstat (limited to 'sys/vm/vm_object.h')
-rw-r--r--sys/vm/vm_object.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/vm/vm_object.h b/sys/vm/vm_object.h
index 60e7677b27ed..b1b82bcda8e9 100644
--- a/sys/vm/vm_object.h
+++ b/sys/vm/vm_object.h
@@ -34,7 +34,7 @@
* SUCH DAMAGE.
*
* from: @(#)vm_object.h 7.3 (Berkeley) 4/21/91
- * $Id: vm_object.h,v 1.6 1994/01/14 16:27:25 davidg Exp $
+ * $Id: vm_object.h,v 1.7 1994/03/14 21:54:27 davidg Exp $
*/
/*
@@ -100,7 +100,8 @@ struct vm_object {
/* Paging (in or out) - don't
collapse or destroy */
/* boolean_t */ can_persist:1, /* allow to persist */
- /* boolean_t */ internal:1; /* internally created object */
+ /* boolean_t */ internal:1, /* internally created object */
+ read_only:1; /* entire obj is read only */
queue_chain_t cached_list; /* for persistence */
};