Re: [Mono-dev] [PATCH] WCF more detail on Destination Unreachable

2010-04-01 Thread Atsushi Eno
Hi again, After a couple of fixes, this exception handling should be working in trunk now. Atsushi Eno On 2010/03/25 19:24, Matt Dargavel wrote: Thanks for the explanation, I had a feeling it wouldn't be as simple as I was hoping it was. :-) -Original Message- From: Atsushi

Re: [Mono-dev] [PATCH] WCF more detail on Destination Unreachable

2010-04-01 Thread Matt Dargavel
Cool, thanks. I'll do an update. -Original Message- From: Atsushi Eno [mailto:atsushi...@veritas-vos-liberabit.com] Sent: 01 April 2010 10:46 AM To: Matt Dargavel Cc: mono-devel-list@lists.ximian.com Subject: Re: [Mono-dev] [PATCH] WCF more detail on Destination Unreachable Hi

Re: [Mono-dev] [PATCH] User Set Nursery Size

2010-04-01 Thread Mark Probst
On Tue, Mar 30, 2010 at 1:06 AM, Sanjoy Das san...@playingwithpointers.com wrote: Patch fixed. Will not work unless the patch to driver.c (attached) is also applied. Committed. Thanks. Mark ___ Mono-devel-list mailing list

Re: [Mono-dev] [PATCH] User Set Nursery Size

2010-04-01 Thread Miguel de Icaza
Hello, This setting introduces a new environment variable, please provide a patch for the mono/man/mono.1 file to properly document this new environment variable. On Mon, Mar 29, 2010 at 7:06 PM, Sanjoy Das san...@playingwithpointers.com wrote: Patch fixed. Will not work unless the patch

[Mono-dev] Define GC_OPENBSD_THREADS instead of GC_FREEBSD_THREADS in configure.in

2010-04-01 Thread Robert Nagy
Index: configure.in === --- configure.in(revision 154650) +++ configure.in(working copy) @@ -151,7 +151,7 @@ ;; *-*-*openbsd*) host_win32=no - CPPFLAGS=$CPPFLAGS

[Mono-dev] trunk build failure with system gc

2010-04-01 Thread Robert Nagy
mono-gc.h is incosistent with mono-gc.c about these definitions, so i've synced mono-gc.h to mono-gc.c Index: mono/metadata/mono-gc.h === --- mono/metadata/mono-gc.h (revision 154650) +++ mono/metadata/mono-gc.h (working

[Mono-dev] Add OpenBSD to the list of definitions in tests/libtest.c

2010-04-01 Thread Robert Nagy
Index: mono/tests/libtest.c === --- mono/tests/libtest.c(revision 154650) +++ mono/tests/libtest.c(working copy) @@ -3191,7 +3191,7 @@ * mono_method_get_unmanaged_thunk tests */ -#if defined(__GNUC__)

Re: [Mono-dev] [PATCH] User Set Nursery Size

2010-04-01 Thread Sanjoy Das
Patch attached. -- Regards, Sanjoy Das http://playingwithpointers.com http://playingwithpointers.com/custom/public_key.txt Index: man/mono.1 === --- man/mono.1 (revision 154393) +++ man/mono.1 (working copy) @@ -1336,6 +1336,19 @@

[Mono-dev] Test Suite Failures, Revision 2

2010-04-01 Thread Jonathan Pobst
[Updated list of test failures since last week] Hey guys! We have accumulated many test suite failures in the past month. If you commit to mono, please take the time to regularly check the buildbots to ensure you are not breaking things. The buildbot results are available here:

Re: [Mono-dev] Test Suite Failures, Revision 2

2010-04-01 Thread Rodrigo Kumpera
On Thu, Apr 1, 2010 at 2:26 PM, Jonathan Pobst mon...@jpobst.com wrote: [Updated list of test failures since last week] Hey guys! We have accumulated many test suite failures in the past month. If you commit to mono, please take the time to regularly check the buildbots to ensure you are

Re: [Mono-dev] Define GC_OPENBSD_THREADS instead of GC_FREEBSD_THREADS in configure.in

2010-04-01 Thread Robert Nagy
This is an updated version that uses boehm as the default gc and disables sigaltstack because it seems a wee bit buggy on openbsd. Index: configure.in === --- configure.in(revision 154650) +++ configure.in(working

[Mono-dev] Rss20ItemFormatter.cs

2010-04-01 Thread Martin Potter
Hi, Can anyone provide any more insight, and/or a test case, for the crash referenced on lines 208-211 of Rss20ItemFormatter.cs? case pubDate: // FIXME: somehow DateTimeOffset causes the runtime crash. reader.ReadElementContentAsString (); // Item.PublishDate =

Re: [Mono-dev] Add OpenBSD to the list of definitions in tests/libtest.c

2010-04-01 Thread Zoltan Varga
Hi, Applied to SVN HEAD/2.6. Zoltan On Thu, Apr 1, 2010 at 6:40 PM, Robert Nagy rob...@openbsd.org wrote: Index: mono/tests/libtest.c === --- mono/tests/libtest.c(revision 154650) +++ mono/tests/libtest.c

Re: [Mono-dev] trunk build failure with system gc

2010-04-01 Thread Zoltan Varga
Hi, Applied a variant of this patch to SVN HEAD. Zoltan On Thu, Apr 1, 2010 at 6:39 PM, Robert Nagy rob...@openbsd.org wrote: mono-gc.h is incosistent with mono-gc.c about these definitions, so i've synced mono-gc.h to mono-gc.c Index: mono/metadata/mono-gc.h

Re: [Mono-dev] [PATCH 4/8] mini: Add support for BeOS-style signal handlers

2010-04-01 Thread Zoltan Varga
Hi, This is ok to check in. Zoltan On Thu, Apr 1, 2010 at 2:27 AM, Andreas Färber andreas.faer...@web.dewrote: Haiku does not support SA_SIGINFO-style signal handlers but supports a BeOS extension to signal handlers. This commit is licensed under the MIT X11 license.

Re: [Mono-dev] [RFC 5/8] io-layer: Define makedev for Haiku

2010-04-01 Thread Zoltan Varga
Looks ok. Zoltan On Thu, Apr 1, 2010 at 2:27 AM, Andreas Färber andreas.faer...@web.dewrote: This commit is licensed under the MIT X11 license. --- mono/io-layer/processes.c |3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/mono/io-layer/processes.c

Re: [Mono-dev] [PATCH 2/8] mini: Fix unguarded uses of siginfo_t

2010-04-01 Thread Zoltan Varga
Hi, This looks ok. Zoltan On Thu, Apr 1, 2010 at 2:27 AM, Andreas Färber andreas.faer...@web.dewrote: Haiku does not support SA_SIGINFO-style signal handlers including the siginfo_t type. This commit is licensed under the MIT X11 license. --- mono/mini/ChangeLog |8

[Mono-dev] Yet another problem compiling sources under cygwin

2010-04-01 Thread Wayne Kelly
Hi, I'm trying to compile mono sources under cygwin on Windows. I followed the instructions from the tutorial at http://shana.worldofcoding.com/en/mono_cygwin_tutorial.html I'm receiving a make error: undefined reference to _wapi_clear_interruption this reference is from mini-exception.c

Re: [Mono-dev] Yet another problem compiling sources under cygwin

2010-04-01 Thread Jonathan Pobst
On 4/1/2010 8:23 PM, Wayne Kelly wrote: I'm receiving a make error: undefined reference to _wapi_clear_interruption this reference is from mini-exception.c reported when linking libmono-2.0.la There is a definition function wapi_clear_interruption in mono/io-layer/wthreads.c but this source