diff options
author | Michael I. Bushnell <mib@gnu.org> | 1996-03-26 21:17:04 +0000 |
---|---|---|
committer | Michael I. Bushnell <mib@gnu.org> | 1996-03-26 21:17:04 +0000 |
commit | 4eb5ea3a8cd4a7ef366c7e2c1780b907ec2e3994 (patch) | |
tree | 66012a0691313db326dce911403a1c613021d464 /libpager | |
parent | 8aeb99257be94a3da180a181a40394caa2c6e6f0 (diff) |
(_pager_free_structure): Revert.
Diffstat (limited to 'libpager')
-rw-r--r-- | libpager/object-terminate.c | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/libpager/object-terminate.c b/libpager/object-terminate.c index 17522307..8598ab50 100644 --- a/libpager/object-terminate.c +++ b/libpager/object-terminate.c @@ -87,7 +87,6 @@ _pager_free_structure (struct pager *p) int wakeup; struct lock_request *lr; struct attribute_request *ar; - struct anticipation *ant, *nxt; wakeup = 0; for (lr = p->lock_requests; lr; lr = lr->next) @@ -108,14 +107,6 @@ _pager_free_structure (struct pager *p) mach_port_deallocate (mach_task_self (), p->memobjcntl); mach_port_deallocate (mach_task_self (), p->memobjname); - for (ant = p->anticipations; ant; ant = nxt) - { - vm_deallocate (mach_task_self (), ant->address, ant->len); - nxt = ant->next; - free (ant); - } - p->anticipations = 0; - /* Free the pagemap */ if (p->pagemapsize) { |