diff options
author | Michael I. Bushnell <mib@gnu.org> | 1996-03-26 21:17:52 +0000 |
---|---|---|
committer | Michael I. Bushnell <mib@gnu.org> | 1996-03-26 21:17:52 +0000 |
commit | ab59065903cb6791d7fb04f30379519d04e5df2a (patch) | |
tree | c265664a0d9324d45c12a42ea5b446718554fdbf /libpager | |
parent | 461e9d8b29f6ff1584aa375128cbc6bb19eb977c (diff) |
Revert.
Diffstat (limited to 'libpager')
-rw-r--r-- | libpager/priv.h | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/libpager/priv.h b/libpager/priv.h index 277939a9..a7a55fe7 100644 --- a/libpager/priv.h +++ b/libpager/priv.h @@ -64,8 +64,6 @@ struct pager struct pending_init *init_head, *init_tail; #endif - struct anticipation *anticipations; - char *pagemap; int pagemapsize; }; @@ -88,15 +86,6 @@ struct attribute_request int attrs_pending; }; -struct anticipation -{ - struct anticipation *next; - vm_size_t len; - vm_offset_t offset; - vm_address_t address; - int dirty; -}; - #ifdef KERNEL_INIT_RACE struct pending_init { @@ -153,7 +142,3 @@ void _pager_lock_object (struct pager *, vm_offset_t, vm_size_t, int, int, void _pager_free_structure (struct pager *); void _pager_clean (void *arg); void _pager_real_dropweak (void *arg); -struct anticipation *_pager_check_anticipations (struct pager *, vm_size_t, - vm_offset_t); - - |