Upgrade Boehm GC to 7.2alpha4.
[cacao.git] / src / mm / boehm-gc / include / private / darwin_stop_world.h
index f6f5314ee315a5410cade12e06a7045214bfda05..d726df55b46670c3e8a0f8b6305868089270cdb5 100644 (file)
@@ -1,15 +1,32 @@
+/*
+ * Copyright (c) 1994 by Xerox Corporation.  All rights reserved.
+ * Copyright (c) 1996 by Silicon Graphics.  All rights reserved.
+ * Copyright (c) 1998 by Fergus Henderson.  All rights reserved.
+ * Copyright (c) 2000-2009 by Hewlett-Packard Development Company.
+ * All rights reserved.
+ *
+ * THIS MATERIAL IS PROVIDED AS IS, WITH ABSOLUTELY NO WARRANTY EXPRESSED
+ * OR IMPLIED.  ANY USE IS AT YOUR OWN RISK.
+ *
+ * Permission is hereby granted to use or copy this program
+ * for any purpose,  provided the above notices are retained on all copies.
+ * Permission to modify the code and to distribute modified code is granted,
+ * provided the above notices are retained, and a notice that the code was
+ * modified is included with the above copyright notice.
+ */
+
 #ifndef GC_DARWIN_STOP_WORLD_H
 #define GC_DARWIN_STOP_WORLD_H
 
 #if !defined(GC_DARWIN_THREADS)
-#error darwin_stop_world.h included without GC_DARWIN_THREADS defined
+# error darwin_stop_world.h included without GC_DARWIN_THREADS defined
 #endif
 
 #include <mach/mach.h>
 #include <mach/thread_act.h>
 
 struct thread_stop_info {
-    mach_port_t mach_thread;
+  mach_port_t mach_thread;
 };
 
 struct GC_mach_thread {
@@ -17,6 +34,4 @@ struct GC_mach_thread {
   int already_suspended;
 };
 
-void GC_darwin_register_mach_handler_thread(mach_port_t thread);
-
 #endif