diff options
author | Thomas Bushnell <thomas@gnu.org> | 1999-07-03 23:55:22 +0000 |
---|---|---|
committer | Thomas Bushnell <thomas@gnu.org> | 1999-07-03 23:55:22 +0000 |
commit | 9c704634732f77b5ccd28ca224eac4b71d722e4a (patch) | |
tree | 18098fdec2b6a6e000d4f40a16c38466c2ffb8ae /trans/crash.c | |
parent | 771a659328bf1929bef5ccb5d443c089a438b3d3 (diff) |
1999-07-03 Thomas Bushnell, BSG <tb@mit.edu>
* crash.c (stop_pgrp): Use munmap instead of vm_deallocate.
Diffstat (limited to 'trans/crash.c')
-rw-r--r-- | trans/crash.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/trans/crash.c b/trans/crash.c index 3128e7e8..643634f8 100644 --- a/trans/crash.c +++ b/trans/crash.c @@ -126,7 +126,7 @@ stop_pgrp (process_t userproc, mach_port_t cttyid) mach_port_deallocate (mach_task_self (), msgport); } if (pids != pids_) - vm_deallocate (mach_task_self (), (vm_address_t) pids, numpids); + munmap (pids, numpids); } |