Re: [Fwd: Re: [Fwd: Re: [Mono-devel-list] System.Data.DataSet.ReadXml reimplementation]]

2005-06-24 Thread Atsushi Eno
Hi Kosta, Maybe I had better take care of it by myself. I think there are some cases that we can optimize. For example when tables are already defined it does not require InferSchema and thus entire load won't be required. However similar things also happen to XmlDataReader, so they should be

[Mono-devel-list] Reworked Patch of Timer

2005-06-24 Thread S Umadevi
Hey Ben Thanks for your comments. Find the diff attached.. Can this be commited now? Regards uma Index: Timer.cs === --- Timer.cs(revision 46470) +++ Timer.cs(working copy) @@ -29,122 +29,79 @@ // using

Re: [Mono-devel-list] Reworked Patch of Timer

2005-06-24 Thread Thomas Harning Jr.
S Umadevi wrote: Hey Ben Thanks for your comments. Find the diff attached.. Can this be commited now? Regards uma Looking over this patch, it looks like there could be some good use of foreach for looping over things. It would tighten the code up readability-wise. The performance of

[Mono-devel-list] Problem when building Mono from svn this morning...

2005-06-24 Thread Hubert FONGARNAND
gmcs could not load some classes? make[8]: Entering directory `/home/hubert/mono/mcs/class/System' MONO_PATH=../../class/lib/net_2_0: $MONO_PATH /home/hubert/mono/mono/runtime/mono-wrapper ../../gmcs/gmcs.exe -d:NET_1_1 -d:NET_2_0 -debug /noconfig /define:XML_DEP /r:System.Xml.dll

Re: [Mono-devel-list] Problem when building Mono from svn this morning...

2005-06-24 Thread Atsushi Eno
Anytime you could not build mono or mcs, make sure you ran make clean under mono before rebuilding things. I happend to see the same build error but solved with that. Atsushi Eno Hubert FONGARNAND wrote: gmcs could not load some classes? make[8]: Entering directory

Re: [Mono-devel-list] Problem when building Mono from svn this morning...

2005-06-24 Thread miguel
gmcs could not load some classes? You forgot to run `make clean' before make. You really should do that after updating from SVN. make[8]: Entering directory `/home/hubert/mono/mcs/class/System' MONO_PATH=../../class/lib/net_2_0: $MONO_PATH /home/hubert/mono/mono/runtime/mono-wrapper

Re: [Mono-devel-list] Reworked Patch of Timer

2005-06-24 Thread S Umadevi
New patch. 1. used a foreach instead of a for. 2. Will not compute the waittime, unless there is a change to the timers arraylist(Thanks to Hari for pointing this out) Regards uma Thomas Harning Jr. [EMAIL PROTECTED] 06/24/05 12:16 PM S Umadevi wrote: Hey Ben Thanks for your comments. Find

Re: [Mono-devel-list] Problem when building Mono from svn this morning...

2005-06-24 Thread Bill Middleton
My experience has been that it's easier to run make clean before updating svn. Does this make sense? If configure.in or any Makefile template changes then one can't make clean after updating without re-autogen'ing. Of course, if any of those have changed, then autogen will be required anyway, but

[Mono-devel-list] C# Threading : libgcc_s.so.1 must be installed for pthread_cancel to work

2005-06-24 Thread prashanth.kalvala
Hi,We have mono 1.1.7 installed on Redhat Linux version 9.0. We have implemented a basic threading code in C#. The code is attached at the end of the mail.The output of the code is as follows:The Main() thread calls this after starting the new InstanceCaller thread.The Main () thread calls

[Mono-devel-list] MonoDebugger on linux

2005-06-24 Thread nick Ricketts
Does MonoDebugger work on any linux for PPC?? I can find a definitive answer online anywhere but judging from the code in /debugger/backends/server/ there is no support for ppc linux. But it was wierd to see arch-ppc which links to OSX when OSX BFD doesnt work at all. Aynone have any ideas?? I am

Re: [Mono-devel-list] C# Threading : libgcc_s.so.1 must be installed for pthread_cancel to work

2005-06-24 Thread Miguel de Icaza
Hello, We have mono 1.1.7 installed on Redhat Linux version 9.0. We have implemented a basic threading code in C#. The code is attached at the end of the mail. How did you install Mono on Red Hat 9? Miguel ___ Mono-devel-list mailing list

Re: [Mono-devel-list] Indentation (was: Reworked Patch of Timer)

2005-06-24 Thread Ben Maurer
On Fri, 2005-06-24 at 20:15 +0200, Michele Beltrame wrote: Hello all! * Please follow the mono coding guidelines (http://mono-project.com/Coding_Guidelines) I took a chance to read these guidelines as well. Since I've been using 4-space tab for all this time, I guess I

Re: [Mono-devel-list] reduced size package

2005-06-24 Thread Miguel de Icaza
Hello, I'm new to the list, residing in the UK and trying to get a small .NET application to run correctly under MONO. At present my question is about the possibility of using a small part of MONO. The .NET application I wish to deliver by download is very simple, and must surely use

RE: [Mono-devel-list] Will Mono run on Playstation 3

2005-06-24 Thread Peter De Jager
Well, I won't quite say orders of magnitude. In floating point Xbox 360 provides (approx.) 1 teraflops while PS3 does 1.8. The cell processor does have multiple cores, but so does the PPC in Xbox. They should both be fantastic platforms but my pref would also be with PS3 ;-) and I don't see MS

Re: [Mono-devel-list] Will Mono run on Playstation 3

2005-06-24 Thread Bas Westerbaan
I think that the gaming platforms is all about hype. That they use the capability of floating point calculation as the power of the platform is an example of the supervisialness of the whole marketing campaign. A good while after they are released there should be decent tests, which will show

RE: [Mono-devel-list] Will Mono run on Playstation 3

2005-06-24 Thread Peter De Jager
Thank you, that is what I was trying to find out. Sony is marketing PS3 as supporting Linux, if anything it will be good for them if more people buy it, and the ability to run Linux (and run it well) will not diminish their market share in any way, so I don't see Sony blocking any effort, or lack

[Mono-devel-list] mono autogen error - distdir is target; expected variable

2005-06-24 Thread Scott Walters
Hi, autogen in the mono project errors out with distdir is target; expected variable. I looked in Makefile.am and see that distdir is used as a target and a variable ao I assume this is ok. Could this have something to do with the automake version? The version it uses is 1.4p6. Thanks,