From e1bca0f2d29289e261c7651e93d2d4ccb1dcf874 Mon Sep 17 00:00:00 2001 From: Gonzalo Paniagua Javier Date: Sat, 16 Jan 2010 01:19:42 +0000 Subject: [PATCH] Add 2 empty functions needed to compile in the PS3. svn path=/trunk/mono/; revision=149679 --- os_dep.c | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/os_dep.c b/os_dep.c index 7e4e567d..3a4b8a00 100644 --- 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; -- 2.40.0