[Mono-dev] corcompare patch to generate well-formed XML

2006-02-22 Thread Atsushi Eno
Hello, After hearing from Gonzalo that buggy XmlTextWriter (by design) outputs invalid XML which caused corcompare breakage, I created a corcompare patch and an XmlWriter wrapper that avoids invalid XML output (such as field name=vbBack attrib=32854 fieldtype=System.String value=#x8; /).

[Mono-dev] can mono run under AIX 4.3, 5.2

2006-02-22 Thread zhu shi song
Dear lists, I hope my C# web application can run under AIX 6000. The OS versions of AIX6000 are 4.3, 5.2. Who know if there is mono binary release for aix? tks zhu __ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection

[Mono-dev] [Patch] Constant changes in mono/support/serial.c

2006-02-22 Thread Carlos Alberto Cortez
Hello, The attached patch updates some comparisons in mono/support/serial.c (some values inside System.IO.Ports changed and need to be taken in count). May I proceed? Carlos. Index: serial.c === --- serial.c (revisión: 56687) +++

[Mono-dev] [PATCH] Verbose message for disk full error.

2006-02-22 Thread Jörg Rosenkranz
Hi Dick, The attached patch adds a verbose exception to error 39 (disk full). Is it save to commit this change? Thanks, Joerg. DiskFullException.diff Description: DiskFullException.diff ___ Mono-devel-list mailing list

Re: [Mono-dev] Building Mono on Linux/Alpha

2006-02-22 Thread Zoltan Varga
Hi, You can use whatever calling convention you want when calling managed methods, but the JIT needs to support calling native functions as well. Most architectures pass structures on the stack when calling managed methods, and implement the platform ABI

[Mono-dev] GC startup time on windows (in DllMain)

2006-02-22 Thread Aras Pranckevicius
Hi, When profiling our startup times on Windows, I noticed that GC_init takes quite long (~1.5 seconds on P4 3GHz), called from DllMain. The call graph goes roughly like this: DllMain - GC_init - GC_init_inner - GC_gcollect_inner (GC_try_to_collect_inner) - GC_stopped_mark - GC_mark_some_inner -

Re: [Mono-dev] GC startup time on windows (in DllMain)

2006-02-22 Thread Robert Jordan
Hey, When profiling our startup times on Windows, I noticed that GC_init takes quite long (~1.5 seconds on P4 3GHz), called from DllMain. The call graph goes roughly like this: DllMain - GC_init - GC_init_inner - GC_gcollect_inner (GC_try_to_collect_inner) - GC_stopped_mark -

[Mono-dev] Re: [PATCH] Verbose message for disk full error.

2006-02-22 Thread Dick Porter
On Wed, 2006-02-22 at 12:49 +0100, Jörg Rosenkranz wrote: Hi Dick, The attached patch adds a verbose exception to error 39 (disk full). Is it save to commit this change? Looks good to me. Thanks, - Dick ___ Mono-devel-list mailing list

[Mono-dev] performance patch for TypeDescriptor

2006-02-22 Thread Andrew Skiba
Hello, I found a big performance trouble relative to dotnet with the following code: static void Main(string[] args) { while (true) { DateTime start = DateTime.Now; for (int i=0; i1000; i++) { TextBox tb = new TextBox ();

Re: [Mono-dev] can mono run under AIX 4.3, 5.2

2006-02-22 Thread Paolo Molaro
On 02/22/06 zhu shi song wrote: I hope my C# web application can run under AIX 6000. The OS versions of AIX6000 are 4.3, 5.2. Who know if there is mono binary release for aix? We don't have access to AIX boxes and nobody who does has stepped up to do the port (which should be mostly

Re: [Mono-dev] [Patch] Constant changes in mono/support/serial.c

2006-02-22 Thread Paolo Molaro
On 02/22/06 Carlos Alberto Cortez wrote: The attached patch updates some comparisons in mono/support/serial.c (some values inside System.IO.Ports changed and need to be taken in count). May I proceed? Please introduce an enum in the C code that mirrors the one in C# code and use that

Re: [Mono-dev] Mono on Mac OS X Intel.

2006-02-22 Thread Paolo Molaro
On 02/22/06 Daniel Lundqvist wrote: From what I understand support for subject is not finished at the moment. Would love to start trying it out. Is there anything I can do to help? I can try patches, setup account on my machine for developers or anything else you can think of. Unfortunately

Re: [Mono-dev] Cron Jobs in mono, plesk 7.5 reloaded

2006-02-22 Thread Paolo Molaro
On 02/20/06 Martin Tuncaydin wrote: I am trying to run a cron on an aspx file in mono. I have plesk reloaded 7.5 on fedora core 2. Has anyone any suggestions on how to do this, I don't know where to start. Cron jobs are added by editing the crontab for the user. There is nothing specific to

Re: [Mono-dev] GC startup time on windows (in DllMain)

2006-02-22 Thread Aras Pranckevicius
Just a wild guess: your P4 is a SMP machine (hyperthreading). Since VMware (where you said the startup time is fast) doesn't simulate SMP, I'd say this is a SMP problem of the GC. Yes, it is a P4 with HT. Is long GC startup time on SMP machines a known issue? (if so - why it does not manifest

Re: [Mono-dev] Screen Capture with Mono

2006-02-22 Thread Paolo Molaro
On 02/20/06 Evan Hazlett wrote: im looking for a way to perform a screen capture with Mono in Linux... i know in Win32, you can use dllimport, but Im not sure what to use with Linux... [...] btw... i did do a quick google search.. ;) Must use a different google than the rest of us;)

Re: [Mono-dev] libgtkembedmoz.so + sigsegv

2006-02-22 Thread Paolo Molaro
On 02/20/06 Jurgen Schoeters wrote: My program sometimes crashes with a segmentation fault caused by libgtkembedmoz.so . I've seen some bug reports on the net but no solution,does someone know how to bypass the problem ? I've used libgtkembedmoz.so from mozilla-1.7.12 . Do you have a test

Re: [Mono-dev] Screen Capture with Mono

2006-02-22 Thread Evan Hazlett
thanks...im still a newb... ;)On 2/22/06, Paolo Molaro [EMAIL PROTECTED] wrote: On 02/20/06 Evan Hazlett wrote: im looking for a way to perform a screen capture with Mono in Linux... i know in Win32, you can use dllimport, but Im not sure what to use with Linux...[...] btw...i did do a quick

Re: [Mono-dev] 1076 Ways To Break A Runtime

2006-02-22 Thread Paolo Molaro
On 02/22/06 Jim Purbrick wrote: This version incorporates all of the old tests. Most are generated from templates, but there were the odd few that didn't warrant a template and couldn't be generated from an existing one, so I've just included those as cil files. Sounds good. Would you mind

Re: [Mono-dev] 1003 Ways To Break A Runtime

2006-02-22 Thread Paolo Molaro
On 02/21/06 Jim Purbrick wrote: No. Say you have: class A {} class B : A {} class C : B {} Merging B and C will result in a B type, not Object. The spec says: the closest common supertype. If you need to merge C and string, then the closest supertype is Object. But, if all

Re: [Mono-dev] performance patch for TypeDescriptor

2006-02-22 Thread Miguel de Icaza
Hello Andrew, on dotnet it takes 12 seconds to perform 10,000,000 of such loops, while on mono it takes 20 second for 10,000. So the performance is worse in more than 1000 times. I love the idea of this patch, feel free to apply it. As usual, if you could add some tests, it would be even

Re: [Mono-dev] [OT] No way to create account on mono-project?

2006-02-22 Thread Miguel de Icaza
Hello, Is there a way to get an account to contribute at least by fixing any errors on the site or writing tutorials? Or should we just notify a contributor with changes and tutorials to post up there? You can start by pointing out the issues, or joining the mono-docs-list. If you contribute

Re: [Mono-dev] [OT] No way to create account on mono-project?

2006-02-22 Thread Joshua Kugler
On Wednesday 22 February 2006 09:02, Miguel de Icaza wrote: Hello, Is there a way to get an account to contribute at least by fixing any errors on the site or writing tutorials? Or should we just notify a contributor with changes and tutorials to post up there? You can start by pointing

Re: [Mono-dev] Mono on Mac OS X Intel.

2006-02-22 Thread Daniel Lundqvist
Paolo Molaro wrote: On 02/22/06 Daniel Lundqvist wrote: From what I understand support for subject is not finished at the moment. Would love to start trying it out. Is there anything I can do to help? I can try patches, setup account on my machine for developers or anything else you can

Re: [Mono-dev] [OT] No way to create account on mono-project?

2006-02-22 Thread Mike Kestner
On Wed, 2006-02-22 at 10:03 -0900, Joshua Kugler wrote: On Wednesday 22 February 2006 09:55, Richard Torkar wrote: On Feb 22, 2006, at 19:27 , Joshua Kugler wrote: OK, my first one. :) On http://www.mono-project.com/Languages it points to IronPython via the URL

Re: [Mono-dev] System.Drawing.Graphics ignores InterpolationMode

2006-02-22 Thread Peter Dennis Bartok
Funny, this bug complains about the opposite, that only NearestNeighbor is used. http://bugzilla.ximian.com/show_bug.cgi?id=77181 Cheers, Peter -Original Message- From: Jonathan Resnick [EMAIL PROTECTED] To: 'mono-devel mailing list' mono-devel-list@lists.ximian.com Date: 22

[Mono-dev] Mono runtime regression

2006-02-22 Thread Kamil Skalski
Hi! I noticed another regression, which seems to be caused by http://lists.ximian.com/pipermail/mono-patches/2006-February/070993.html It gives NUnit version 2.2.0 Copyright (C) 2002-2003 James W. Newkirk, Michael C. Two, Alexei A. Vorontsov, Charlie Poole. Copyright (C) 2000-2003 Philip Craig.

Re: [Mono-dev] 1147 Ways To Break A Runtime

2006-02-22 Thread Ankit Jain
Hi, snip . All the tests bar those which reference non-existent fields and methods now assemble with Mono ilasm and ... snip I had fixed this over the weekend (referencing non-existant methods/fields in a TypeDef), so it should be working now. Are you using ilasm from svn ? -Ankit --