Re: [Mono-dev] Tasklet compile support on windows.

2009-08-25 Thread James Zhao
Hi, As mentioned earlier, I'm not too good with C++ :) I just thought those two things might be helpful for future works. Thanks, James On Sun, Aug 23, 2009 at 4:10 PM, Rodrigo Kumpera kump...@gmail.com wrote: Can you work out a patch that provided such functionality? Most of the runtime

Re: [Mono-dev] Tasklet compile support on windows.

2009-08-25 Thread Rodrigo Kumpera
Jonathan Chambers have volunteered himself to work on this. He'll eventually post a patch so you can test it. Rodrigo On Tue, Aug 25, 2009 at 12:26 PM, James Zhao jameszha...@gmail.com wrote: Hi, As mentioned earlier, I'm not too good with C++ :) I just thought those two things might be

[Mono-dev] Bug report suggestion

2009-08-25 Thread Petit Eric
Hi I'd like to report bug and do it few time, since the old bugzilla existed, but i find it heavy and have less and less time to do it. My actual most used os is Mandriva, they have an easy and light way to report bug, there is an application who handled crash, the stack trace and some useful info

Re: [Mono-dev] Using Mono.Security with .Net 1.1

2009-08-25 Thread Sebastien Pouliot
Hello Florin, On Fri, 2009-08-07 at 17:37 +0300, Florin Daneliuc wrote: Hello, I'm working on a older project which uses Mono.Security with .Net 1.1 for the SSL capabilities. The project is using an older version of the library from around 2004-2006. That's a wide range. A lot of work

[Mono-dev] C# Binding for elektra

2009-08-25 Thread Vladimir Giszpenc
Hi, Is someone planning to write a .Net binding to Elektra (1)? Like GConf, Elektra is a place to put configuration data. It is different in that it would be accessible even when you want to run without X and Gtk (and the many other GConf dependencies). I need this for some buildbot testing of

Re: [Mono-dev] C# Binding for elektra

2009-08-25 Thread Avery Pennarun
On Tue, Aug 25, 2009 at 6:37 PM, Vladimir Giszpencvgiszp...@dsci.com wrote: Is someone planning to write a .Net binding to Elektra (1)?  Like GConf, Elektra is a place to put configuration data.  It is different in that it would be accessible even when you want to run without X and Gtk (and

[Mono-dev] [PATCH] TimeZoneInfo

2009-08-25 Thread Christian Mueller Ger
hi, i made a patch that implements two missing serialize functions TimeZoneInfo.ToSerializedString() and TimeZoneInfo.FromSerializedString(). hope you would add it to mono. http://www.nabble.com/file/p25140760/TimeZoneInfo.patch TimeZoneInfo.patch -- View this message in context:

[Mono-dev] Mono Continuations - Memory keeps increasing after store()

2009-08-25 Thread James Zhao
Hi, Here's Mono Continuations' continuation_store (...). From looking at the code below, it appears as though store() follows these two branches: 1. cont-saved_stack num_bytes = cont-stack_alloc_size - use the memory directly 2. else - gc free the used memory, and create some new memory.

Re: [Mono-dev] Mono Continuations - Memory keeps increasing after store()

2009-08-25 Thread Zoltan Varga
Hi, mono_gc_free_fixed () is a no-op when using mono's built in GC, since mono_gc_alloc_fixed () is implemented as a call to GC_malloc (). Zoltan On Wed, Aug 26, 2009 at 2:55 AM, James Zhao jameszha...@gmail.com wrote: Hi, Here's Mono Continuations' continuation_store

Re: [Mono-dev] Mono Continuations - Memory keeps increasing after store()

2009-08-25 Thread James Zhao
Hi, Thank you for that info. So that means if current stack last stack, the stack pointer is C freed and malloced. If that's the case, then the behavior I've been experiencing is even more bizarre. Also, you mentioned the built-in gc. What other GCs are available? Thanks, James On Tue, Aug

Re: [Mono-dev] Mono Continuations - Memory keeps increasing after store()

2009-08-25 Thread Zoltan Varga
On Wed, Aug 26, 2009 at 3:11 AM, James Zhao jameszha...@gmail.com wrote: Hi, Thank you for that info. So that means if current stack last stack, the stack pointer is C freed and malloced. If that's the case, then the behavior I've been experiencing is even more bizarre. Also, you