Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGonzalo Paniagua Javier <gonzalo.mono@gmail.com>2010-01-16 04:19:42 +0300
committerGonzalo Paniagua Javier <gonzalo.mono@gmail.com>2010-01-16 04:19:42 +0300
commit9a719d0de8f18cdfb49fcef03912eed9f4bbb3b2 (patch)
tree8f97c69f2b67bed904ce19788c02ffd6a15b3620 /libgc/os_dep.c
parent754d6dd6badb73413f989be89237891660ac05f8 (diff)
Add 2 empty functions needed to compile in the PS3.
svn path=/trunk/mono/; revision=149679
Diffstat (limited to 'libgc/os_dep.c')
-rw-r--r--libgc/os_dep.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/libgc/os_dep.c b/libgc/os_dep.c
index 7e4e567df17..3a4b8a00633 100644
--- a/libgc/os_dep.c
+++ b/libgc/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;