summaryrefslogtreecommitdiff
path: root/libpager/clean.c
diff options
context:
space:
mode:
authorMichael I. Bushnell <mib@gnu.org>1996-03-26 20:50:09 +0000
committerMichael I. Bushnell <mib@gnu.org>1996-03-26 20:50:09 +0000
commit6c9c06cbbdf37bcdf8e115298f058cf91ac431ca (patch)
treee162321ccd1495c9a87cec2949e9a16dd94792d4 /libpager/clean.c
parent98cb8d0c27e0ab61c01c25468676f2fb57f3e113 (diff)
(_pager_clean): Revert.
Diffstat (limited to 'libpager/clean.c')
-rw-r--r--libpager/clean.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/libpager/clean.c b/libpager/clean.c
index 3b970550..e891617f 100644
--- a/libpager/clean.c
+++ b/libpager/clean.c
@@ -29,7 +29,6 @@ _pager_clean (void *arg)
#ifdef KERNEL_INIT_RACE
struct pending_init *i, *tmp;
#endif
- struct anticipation *ant, *nxt;
if (p->pager_state != NOTINIT)
{
@@ -44,13 +43,6 @@ _pager_clean (void *arg)
free (i);
}
#endif
- for (ant = p->anticipations; ant; ant = nxt)
- {
- vm_deallocate (mach_task_self (), ant->address, ant->len);
- nxt = ant->next;
- free (ant);
- }
-
mutex_unlock (&p->interlock);
}