diff options
author | alc <alc@FreeBSD.org> | 1999-03-02 05:43:18 +0000 |
---|---|---|
committer | alc <alc@FreeBSD.org> | 1999-03-02 05:43:18 +0000 |
commit | 5149bf66662d331a001b00be7eda524726a4d8c4 (patch) | |
tree | 0fe83d0be0165208214578cff25ba612712f8828 /sys/vm/vm_map.h | |
parent | f86ebee5a71b73933ccd7a7f52876d3e5b25278f (diff) | |
download | FreeBSD-src-5149bf66662d331a001b00be7eda524726a4d8c4.zip FreeBSD-src-5149bf66662d331a001b00be7eda524726a4d8c4.tar.gz |
Remove the last of the share map code: struct vm_map::is_main_map.
Reviewed by: Matthew Dillon <dillon@apollo.backplane.com>
Diffstat (limited to 'sys/vm/vm_map.h')
-rw-r--r-- | sys/vm/vm_map.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/vm/vm_map.h b/sys/vm/vm_map.h index aac6641..1be6f4e 100644 --- a/sys/vm/vm_map.h +++ b/sys/vm/vm_map.h @@ -61,7 +61,7 @@ * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. * - * $Id: vm_map.h,v 1.35 1999/02/07 21:48:22 dillon Exp $ + * $Id: vm_map.h,v 1.36 1999/02/19 14:25:36 luoqi Exp $ */ /* @@ -130,7 +130,6 @@ struct vm_map { struct vm_map_entry header; /* List of entries */ int nentries; /* Number of entries */ vm_size_t size; /* virtual size */ - unsigned char is_main_map; /* Am I a main map? */ unsigned char system_map; /* Am I a system map? */ vm_map_entry_t hint; /* hint for quick lookups */ unsigned int timestamp; /* Version number */ |