Re: [Mono-dev] [PATCH] Support for newer versions of Boehm GC (>7.0)

2010-05-26 Thread Andreas Färber
Hi, Am 26.05.2010 um 10:28 schrieb Burkhard Linke: > the applied patch adds support for newer versions of Boehm GC > (required for a > working GC under Solaris). > > The new API introduces a function called GC_allow_register_threads() > which > explicitly turns on thread management within the

Re: [Mono-dev] Long execution time on first execution (in AOT case)

2010-05-26 Thread Miguel de Icaza
Hello, I want to know how to make the execution of a code snippet/method > deterministic, i.e., like C code can be deterministic, not necessarily > "fast". That is, I tolerate a kind of "initialization" at startup time > of Mono, but the first execution must not take (much) more time than > follow

Re: [Mono-dev] System.NotImplementedException: The requestedfeature is not implemented. atSystem.ServiceModel.Configuration.WSHttpBindingElement.OnApplyConfiguration

2010-05-26 Thread Greg Robinson
Awesome, thanks! I found your blog today too, Good stuff. I would love to be able to contribute; we simply do not have the resources to offer right now. On Wed, May 26, 2010 at 10:31 AM, Atsushi Eno < atsushi...@veritas-vos-liberabit.com> wrote: > I'm working on it, yes ;) > > On 2010/05/26 21

Re: [Mono-dev] System.NotImplementedException: The requestedfeature is not implemented. atSystem.ServiceModel.Configuration.WSHttpBindingElement.OnApplyConfiguration

2010-05-26 Thread Atsushi Eno
I'm working on it, yes ;) On 2010/05/26 21:06, Greg Robinson wrote: > Atsushi Eno, are you on thew Mono development team? Great feedback, > just curious. > > > > On Wed, May 26, 2010 at 5:19 AM, Matt Dargavel > mailto:m...@shout-telecoms.com>> wrote: > > When I was trying some WCF stuff out

Re: [Mono-dev] Possible deadlock in sgen garbage collector

2010-05-26 Thread Rodrigo Kumpera
On Wed, May 26, 2010 at 9:39 AM, Burkhard Linke < bli...@cebitec.uni-bielefeld.de> wrote: > Hi, > > I've stumpled over a possible deadlock in boehm GC some time ago. Since the > sgen GC uses the same mechanism for stopping the world, it may also be a > problem in that implementation. > > Thread te

Re: [Mono-dev] Long execution time on first execution (in AOT case)

2010-05-26 Thread Martin Däumler
Hi, a lot of thanks for your answer. On 04.05.10 10:59 pm, Zoltan Varga wrote: > mono is designed to initialize most things lazily, so the first time > is done, it will take more time. In particular, loading an aot image > might load it from disk, calling a pinvoke method > causes the share

[Mono-dev] Possible deadlock in sgen garbage collector

2010-05-26 Thread Burkhard Linke
Hi, I've stumpled over a possible deadlock in boehm GC some time ago. Since the sgen GC uses the same mechanism for stopping the world, it may also be a problem in that implementation. Thread termination is signalled to the GC by the mean of a thread exit handler (boehm) or a thread data key d

Re: [Mono-dev] System.NotImplementedException: The requestedfeature is not implemented. atSystem.ServiceModel.Configuration.WSHttpBindingElement.OnApplyConfiguration

2010-05-26 Thread Greg Robinson
Atsushi Eno, are you on thew Mono development team? Great feedback, just curious. On Wed, May 26, 2010 at 5:19 AM, Matt Dargavel wrote: > When I was trying some WCF stuff out I found some scenarios where the > app.config settings didn’t work, but using their code based counter-parts > did. Bu

Re: [Mono-dev] System.NotImplementedException: The requestedfeature is not implemented. atSystem.ServiceModel.Configuration.WSHttpBindingElement.OnApplyConfiguration

2010-05-26 Thread Matt Dargavel
When I was trying some WCF stuff out I found some scenarios where the app.config settings didn't work, but using their code based counter-parts did. But Atsushi-san is the man in the know, so it looks like the Credentials types will only work for some basic http authentication.

[Mono-dev] [PATCH] Support for newer versions of Boehm GC (>7.0)

2010-05-26 Thread Burkhard Linke
Hi, the applied patch adds support for newer versions of Boehm GC (required for a working GC under Solaris). The new API introduces a function called GC_allow_register_threads() which explicitly turns on thread management within the garbage collector. The patch takes care for calling this func