6 * Geoff Norton (gnorton@novell.com)
8 * (C) 2010 Ximian, Inc.
14 #include <mach/mach.h>
15 #include <mach/task.h>
16 #include <mach/mach_port.h>
17 #include <mach/thread_act.h>
18 #include <mach/thread_status.h>
20 #include <mono/utils/mono-mmap.h>
22 #include "mach-support.h"
25 mono_mach_get_threads (thread_act_array_t
*threads
, guint32
*count
)
30 ret
= task_threads (current_task (), threads
, count
);
31 } while (ret
== KERN_ABORTED
);
37 mono_mach_free_threads (thread_act_array_t threads
, guint32 count
)
39 return vm_deallocate(current_task (), (vm_address_t
) threads
, sizeof (thread_t
) * count
);