[Mono-dev] StackOverflow in System.Array.Clear

2014-02-03 Thread lambdalice (Yuta Sato)
(sorry for re-posting because of my login with my private mail address) Hi there! I'm lambdalice, a 16 years old Japanese student studying the .NET technology. I like Nemerle, a multi paradigm .NET program language and use it. One day I've tried to process some Nemerle macro, which converts a

[Mono-dev] Point of GC memory allocation in Mono

2014-02-03 Thread serus
Dear Devs, I plan to experiment with the garbage collector and, to get me started, I wrote a small C# program that allocates a couple of objects and then I tried to use GDB to find the function calls that allocates memory for these objects. The function candidates that I identified are:

[Mono-dev] mono-master: windows fixes

2014-02-03 Thread Frank Fuchs
Hi, I just checked if I can build the runtime of mono-master on Windows 7 (64bit) using mingw-w64-tdm (gcc 4.8.1) + msys. Build works fine using an external boehm and adding the following patches: Now I was not able to really test the patches (due to a lack of a up-to-date corelib), but I

Re: [Mono-dev] mono-master: windows fixes

2014-02-03 Thread Zoltan Varga
Hi, Applied a variant of these to mono master as 83139b20e228e6f41d346a70a84a8c00ee64b2c2/0c279149286a35474068190238574d1ca57a00be. Zoltan On Mon, Feb 3, 2014 at 9:23 PM, Frank Fuchs fk.fu...@googlemail.com wrote: Hi, I just checked if I can build the runtime of mono-master on

Re: [Mono-dev] Point of GC memory allocation in Mono

2014-02-03 Thread Rodrigo Kumpera
SGen generates fast variants of those functions that don't transition to native code to alloc memory, you can disable them in sgen-conf.hq On Mon, Feb 3, 2014 at 1:11 PM, serus fabian.na...@gmail.com wrote: Dear Devs, I plan to experiment with the garbage collector and, to get me started, I