Re: [Mono-dev] NullReferenceException with mcs/gmcs

2005-11-15 Thread Marek Safar
Hello Felipe, To resolve this problem, please update to the latest mcs version. Regards, Marek (sorry if I'm sending this again, but for me looks like the message didn't make it to the list the last time I sent it) I think I found a bug. I don't know if it's already known, so I'm sending a

Re: [Mono-dev] ./configure --enable-minimal=aot, profiler gives error.

2005-11-15 Thread conn intel
Hello Friends, Thank you for your earliest and quickest response.. But when i tried with mono 1.1.10 using ./configure --enable-minimal=aot,profiler i still getting error as below. Thank you for your reply in advance.. bye , take care. have a nice time and good day ahead.. Regards, Ankur.

Re: [Mono-dev] GBK support error

2005-11-15 Thread Atsushi Eno
Hi, zhu shi song wrote: Dear lists, I need to convert string aÓÐÍø to byte array. Can you please give the same string using escaped (\u) representation? It looks broken on mail messages. Encoding e = Encoding.GetEncoding(GBK); byte[] bytebuf = e.GetBytes(1ÓÐÍø); Under

[Mono-dev] Enum serealization proble in System.Xml.Serialization.XmlMapping

2005-11-15 Thread Vladimir Krasnov
Hello All, There is a problem in serialization of Enum default value, the value shouldnt be written to the xml. See attached sample that reproduces the problem. Also please approve the patch that fixes the problem. If no one objects I'll commit. Vladimir Krasnov

Re: [Mono-dev] Problem with RadioButtonList

2005-11-15 Thread Johann BLAIS
I am using a simple radiobuttonlist, with no autopostback. Maybe this bug is related to yours, i cannot tell, i did not check internal behaviour... Thanks for your reply anyway. Johann. Hubert FONGARNAND a écrit : I've submitted a bug report about RadioButtons autopostback problem, maybe

[Mono-dev] xsp error

2005-11-15 Thread Carlos Solorzano
I got this wierd error on XSP after it had been running for a while. The exception was much bigger but for some reason my xterm didn't copy anymore than this. Internal error: OutputPage threw an exception System.Exception: Internal error: shouldn't get here in 0x000f6

Re: [Mono-dev] ./configure --enable-minimal=aot, profiler gives error.

2005-11-15 Thread Paolo Molaro
On 11/15/05 conn intel wrote: [...[ (cd .libs/libmonoos.lax/libmonoos.a ar x /home/mono 1.1.10/mono-1.1.10 /mono/os/unix/.libs/libmonoos.a) ar: /home/mono: No such file or directory The makefiles are are not setup to handle correctly paths with spaces in them. Not sure how much work this is

Re: [Mono-dev] xsp error

2005-11-15 Thread Gonzalo Paniagua Javier
On Tue, 2005-11-15 at 10:14 -0600, Carlos Solorzano wrote: I got this wierd error on XSP after it had been running for a while. The exception was much bigger but for some reason my xterm didn't copy anymore than this. Internal error: OutputPage threw an exception System.Exception: Internal

[Mono-dev] Deserialization and members order by reflection

2005-11-15 Thread Vladimir Krasnov
Hello All, Ive found that xml deserialization of objects is depends on fields and properties order returned by reflection. If, for some reason, the order of members is different from expected, the deserialization process fails. For example, members of derived class are shuffled with

[Mono-dev] exiting problems

2005-11-15 Thread Carlos Solorzano
Every so often my console applications won't close after main has exited. I know main has exited because I usually have a Console.WriteLine on the last line of main that tells me that main has exited, however mono keeps on running. This doesn't happen every time, and I don't know if it has

Re: [Mono-dev] Deserialization and members order by reflection

2005-11-15 Thread Lluis Sanchez
Hi, Deserialization should not depend on order of members. If something fails, please file a bug report with a test case. The order we are currently using mimics the order used by MS.NET, and this should not change. Thanks! Lluis. El mar, 15-11-2005 a las 10:03 -0800, Vladimir Krasnov escribió:

Re: [Mono-dev] String.IndexOf function Bug.

2005-11-15 Thread Miguel de Icaza
Hello, string str = MONO; int index = str.IndexOf(/0/0/0); Console.WriteLine( Index : + index.ToString()); What platform is this? I do get -1 ___ Mono-devel-list mailing list Mono-devel-list@lists.ximian.com

Re: [Mono-dev] [PATCH] A fastpath dead code elimination

2005-11-15 Thread Miguel de Icaza
Hello, The alias analysis pass has O(n) complexity (n = code size), it is just a linear sweep on the list of instructions. Then, deadce operates one BB at a time, scanning the code linearly and using the liveness bits as start/end conditions (so it is O(n) as well). Is there is a threshold

Re: [Mono-dev] String.IndexOf function Bug.

2005-11-15 Thread Kornél Pál
See this bug: http://bugzilla.ximian.com/show_bug.cgi?id=76702 Was incorrectly reported but was fixed by Atsushi. Kornél - Original Message - From: Miguel de Icaza [EMAIL PROTECTED] To: Yogendra Thakur [EMAIL PROTECTED] Cc: [EMAIL PROTECTED]; mono-devel-list@lists.ximian.com Sent:

Re: [Mono-dev] String.IndexOf function Bug.

2005-11-15 Thread Miguel de Icaza
See this bug: http://bugzilla.ximian.com/show_bug.cgi?id=76702 Was incorrectly reported but was fixed by Atsushi. Thanks! I backported the fix. ___ Mono-devel-list mailing list Mono-devel-list@lists.ximian.com

Re: [Mono-dev] [PATCH] A fastpath dead code elimination

2005-11-15 Thread Massimiliano Mantione
On Tue, 2005-11-15 at 15:14 -0500, Miguel de Icaza wrote: Hello, The alias analysis pass has O(n) complexity (n = code size), it is just a linear sweep on the list of instructions. Then, deadce operates one BB at a time, scanning the code linearly and using the liveness bits as

Re: [Mono-dev] [PATCH] A fastpath dead code elimination

2005-11-15 Thread Ben Maurer
On Tue, 2005-11-15 at 15:14 -0500, Miguel de Icaza wrote: Hello, The alias analysis pass has O(n) complexity (n = code size), it is just a linear sweep on the list of instructions. Then, deadce operates one BB at a time, scanning the code linearly and using the liveness bits as

[Mono-dev] Re: [Mono-patches] r53054 - in trunk/mcs/build: . platforms

2005-11-15 Thread Raja R Harinath
Hi, Vladislav Spivak [EMAIL PROTECTED] [EMAIL PROTECTED] writes: Author: spivak Date: 2005-11-15 07:56:51 -0500 (Tue, 15 Nov 2005) New Revision: 53054 Modified: trunk/mcs/build/ChangeLog trunk/mcs/build/library.make trunk/mcs/build/platforms/win32.make Log: Modified:

[Mono-dev] Re: [Mono-patches] r53056 - trunk/mcs/class

2005-11-15 Thread Raja R Harinath
Vladislav Spivak [EMAIL PROTECTED] [EMAIL PROTECTED] writes: Author: spivak Date: 2005-11-15 09:11:45 -0500 (Tue, 15 Nov 2005) New Revision: 53056 Modified: trunk/mcs/class/ChangeLog trunk/mcs/class/Makefile Log: Modified: trunk/mcs/class/ChangeLog