[Mono-dev] Mac Boehm CG question

Rodrigo Kumpera kumpera at gmail.com
Fri Jan 22 17:08:52 EST 2010


pthread mutexes on OSX are ridiculously slow. So no matter what you do, GC
performance will be significantly worse than on linux.

But we should check if this change is ok if it does give a nice boost.



On Fri, Jan 22, 2010 at 8:05 PM, Tom Philpot <tom.philpot at logos.com> wrote:

> While investigating some performance problems in our application which uses
> the embedded Mono runtime on Mac OS X targeting 10.5 and 10.6, I noticed
> that several operations spent an extreme amount of time in GC_lock. That
> code lead me back to gcconfig.h where NO_PTHREAD_TRYLOCK is defined. I've
> commented out that #define it on my local Mono build and things seem MUCH
> faster. In fact I'm now able to do real work on more than 2 threads without
> a ton of overhead.
>
> The question is now, does this check still need to be there for later
> versions of Mac OS X? The original commit was back in August 2003, which was
> probably around the timeframe of 10.2 and 10.3 and definitely before the
> Intel Macs. Also, since I don't have a PPC to test on, I didn't comment that
> #define.
>
>
> ws1048-snow:mono tom.philpot$ svn diff libgc/include/private/gcconfig.h
> Index: libgc/include/private/gcconfig.h
> ===================================================================
> --- libgc/include/private/gcconfig.h    (revision 150077)
> +++ libgc/include/private/gcconfig.h    (working copy)
> @@ -329,7 +329,7 @@
>  #    define GETPAGESIZE() getpagesize()
>       /* There seems to be some issues with trylock hanging on darwin. This
>          should be looked into some more */
> -#     define NO_PTHREAD_TRYLOCK
> +//#     define NO_PTHREAD_TRYLOCK
>  #   elif defined(__arm__)
>  #    define ARM
>  #    define mach_type_known
>
> _______________________________________________
> Mono-devel-list mailing list
> Mono-devel-list at lists.ximian.com
> http://lists.ximian.com/mailman/listinfo/mono-devel-list
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.ximian.com/pipermail/mono-devel-list/attachments/20100122/b793986a/attachment-0001.html 


More information about the Mono-devel-list mailing list