Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / boehm-gc / include / private / darwin_stop_world.h
blobf6f5314ee315a5410cade12e06a7045214bfda05
1 #ifndef GC_DARWIN_STOP_WORLD_H
2 #define GC_DARWIN_STOP_WORLD_H
4 #if !defined(GC_DARWIN_THREADS)
5 #error darwin_stop_world.h included without GC_DARWIN_THREADS defined
6 #endif
8 #include <mach/mach.h>
9 #include <mach/thread_act.h>
11 struct thread_stop_info {
12 mach_port_t mach_thread;
15 struct GC_mach_thread {
16 thread_act_t thread;
17 int already_suspended;
20 void GC_darwin_register_mach_handler_thread(mach_port_t thread);
22 #endif