From 540f904871a43b2616da4eebde114a68015a69c1 Mon Sep 17 00:00:00 2001 From: Roland McGrath Date: Thu, 30 Jun 1994 14:57:45 +0000 Subject: Formerly mgt.c.~13~ --- proc/mgt.c | 36 +++++++++++++++++++++--------------- 1 file changed, 21 insertions(+), 15 deletions(-) (limited to 'proc/mgt.c') diff --git a/proc/mgt.c b/proc/mgt.c index eb70bdfe..250cfae0 100644 --- a/proc/mgt.c +++ b/proc/mgt.c @@ -290,23 +290,29 @@ S_proc_get_arg_locations (struct proc *p, /* Implement proc_dostop as described in . */ kern_return_t S_proc_dostop (struct proc *p, - thread_t contthread) + thread_t contthread) { - thread_t *threads; - int i; - u_int nthreads; - - task_suspend (p->p_task); - task_threads (p->p_task, &threads, &nthreads); + thread_t threadbuf[2], *threads = threadbuf; + unsigned int nthreads = 2, i; + error_t err; + + if (err = task_suspend (p->p_task)) + return err; + if (err = task_threads (p->p_task, &threads, &nthreads)) + return err; for (i = 0; i < nthreads; i++) - if (threads[i] != contthread) - { - thread_suspend (threads[i]); - mach_port_deallocate (mach_task_self (), threads[i]); - } - vm_deallocate (mach_task_self (), (u_int) threads, - nthreads * sizeof (thread_t)); - task_resume (p->p_task); + { + if (threads[i] != contthread) + err = thread_suspend (threads[i]); + mach_port_deallocate (mach_task_self (), threads[i]); + } + if (threads != threadbuf) + vm_deallocate (mach_task_self (), (vm_address_t) threads, + nthreads * sizeof (thread_t)); + if (err = task_resume (p->p_task)) + return err; + + mach_port_deallocate (mach_task_self (), contthread); return 0; } -- cgit v1.2.3