]> granicus.if.org Git - gc/commitdiff
Add 2 empty functions needed to compile in the PS3.
authorGonzalo Paniagua Javier <gonzalo.mono@gmail.com>
Sat, 16 Jan 2010 01:19:42 +0000 (01:19 +0000)
committerguest <ivmai@mail.ru>
Fri, 29 Jul 2011 11:31:22 +0000 (15:31 +0400)
svn path=/trunk/mono/; revision=149679

os_dep.c

index 7e4e567df177b52cb026e94e40061ca681ea7845..3a4b8a006338990cd3c02700d29314bf61e423f5 100644 (file)
--- a/os_dep.c
+++ b/os_dep.c
@@ -2088,6 +2088,16 @@ void GC_default_push_other_roots GC_PROTO((void))
 }
 
 # endif /* GC_SOLARIS_THREADS || GC_PTHREADS */
+#ifdef SN_TARGET_PS3
+void GC_default_push_other_roots GC_PROTO((void))
+{
+       printf ("WARNING WARNING WARNING\nGC_default_push_other_roots is not implemented\n");
+}
+void GC_push_thread_structures GC_PROTO((void))
+{
+       printf ("WARNING WARNING WARNING\nGC_default_push_thread_structures is not implemented\n");
+}
+#endif
 
 void (*GC_push_other_roots) GC_PROTO((void)) = GC_default_push_other_roots;