Re: [Mono-dev] .NET Announcement

2014-11-12 Thread Torello Querci
Cool 2014-11-12 19:00 GMT+01:00 Ian Norton inor...@gmail.com: Rather cool! On 12 November 2014 16:24, Andrea Francesco Iuorio andreafrancesco.iuo...@gmail.com wrote:

[Mono-dev] Bug in Socket.BeginSendFile

2013-02-08 Thread Torello Querci
Hi, working on Socket class I find that BeginSendFile method is broken. Main.cs in attach is a test case. On unpatched mono version I get Unhandled Exception: System.ArgumentException: Invalid IAsyncResult - Datatype:System.Runtime.Remoting.Messaging.AsyncResult Parameter name: syncResult at

Re: [Mono-dev] System.Date.Now.ToString() on ARM processor

2013-01-31 Thread Torello Querci
Are you running on Raspian platform? Raspian platform use hardfp that actually are not supported by mono. In order to use MONO on RaspberryPI hardware you need to use Debian instead. Best Regards 2013/1/31 Rodrigo Kumpera kump...@gmail.com Please file a bug report with a minimal test case.

Re: [Mono-dev] System.Date.Now.ToString() on ARM processor

2013-01-31 Thread Torello Querci
? Doesn’t debian use soft float, i.e. is a lot slower? John *From:* mono-devel-list-boun...@lists.ximian.com [mailto: mono-devel-list-boun...@lists.ximian.com] *On Behalf Of *Torello Querci *Sent:* Thursday, January 31, 2013 12:07 AM *To:* Rodrigo Kumpera *Cc:* mono-devel-list

Re: [Mono-dev] (no subject)

2012-12-19 Thread Torello Querci
It's superfluos to say but if normal soft-float debian wheezy ( http://www.raspberrypi.org/downloads ) is used, mono works fine for me. Using raspian version the application seems to start but there are a lots of problem with DateTime class , Thread.Sleep and so on. Thanks 2012/12/18 Rodrigo

Re: [Mono-dev] GC

2012-06-26 Thread Torello Querci
I realize some in depth test for lockless queue and using bohem the memory usage was greater that sgen. Moreover and after some time the memory usage increase a lot like if a buffer was not released under bohem, while sgen was stable. I made the test using mono 2.10.9 Best Regards 2012/6/26

[Mono-dev] Problem handling more the 1024 file handle

2011-11-04 Thread Torello Querci
Hi al, trying to handle more that 1024 handle file I got an exception even if I increase the max number of file limit using setrlimit. The example source code below. Of course mono have the right pcap permission. Using strace on both this code and no setrlimit version code I have some

Re: [Mono-dev] Problem handling more the 1024 file handle

2011-11-04 Thread Torello Querci
to create an equivalent C program and see if that works as expected? My guess would be that the equivalent C program will fail in the same way. If it does not, then it's likely to be a mono bug. Alan On 4 November 2011 07:19, Torello Querci tque...@gmail.com wrote: Hi al, trying to handle more

Re: [Mono-dev] Problem handling more the 1024 file handle

2011-11-04 Thread Torello Querci
Sorry, You are right I'm on 32bit arch 2011/11/4 Robert Jordan robe...@gmx.net: On 04.11.2011 10:17, Torello Querci wrote: This is the first test that I realized. On the same machine, same kernel same calls You don't say which Mono arch you're using. On 32 bit, the following

Re: [Mono-dev] Problem handling more the 1024 file handle

2011-11-04 Thread Torello Querci
Looking in the strace output file this is the setrlimit call: setrlimit(RLIMIT_NOFILE, {rlim_cur=2, rlim_max=2}) = 0 so seems to be correct 2011/11/4 Torello Querci tque...@gmail.com: Sorry, You are right I'm on 32bit arch 2011/11/4 Robert Jordan robe...@gmx.net

Re: [Mono-dev] Problem handling more the 1024 file handle

2011-11-04 Thread Torello Querci
Bug filled: http://bugzilla.xamarin.com/show_bug.cgi?id=1888 Sorry for the delay. 2011/11/4 Robert Jordan robe...@gmx.net: On 04.11.2011 13:26, Robert Jordan wrote: Meanwhile, you could just increase the open files limit with ulimit -S -H 2, so don't mark the bug as super critical ;)

Re: [Mono-dev] News about Bug 623477

2010-12-06 Thread Torello Querci
by MS :) Best Regards. 2010/12/6 Rodrigo Kumpera kump...@gmail.com: This behavior is OS/target dependant, so it's not very useful to try to match MS behavior on it. On Thu, Dec 2, 2010 at 11:09 AM, Torello Querci tque...@gmail.com wrote: Hi guy, no news about bug 623477? Best Regards

[Mono-dev] News about Bug 623477

2010-12-02 Thread Torello Querci
Hi guy, no news about bug 623477? Best Regards, Torello ___ Mono-devel-list mailing list Mono-devel-list@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-devel-list

Re: [Mono-dev] News about Bug 623477?

2010-08-16 Thread Torello Querci
Hi Tobias, 2010/8/16 Tobias Käs tobias.k...@gmx.de: Torello Querci tquerci at gmail.com writes: [...] +            if ((maxStackSize | 0x) != 0) +                maxStackSize = (maxStackSize | 0x)+0x; [...] +            if ((maxStackSize | 0x) != 0

Re: [Mono-dev] News about Bug 623477?

2010-08-16 Thread Torello Querci
New patch with the fixes. Index: class/corlib/System.Threading/Thread.cs === --- class/corlib/System.Threading/Thread.cs (revisione 160737) +++ class/corlib/System.Threading/Thread.cs (copia locale) @@ -976,8 +976,12 @@

[Mono-dev] News about Bug 623477?

2010-08-14 Thread Torello Querci
Hi to all, I'm asking news about the Bug 623477 (https://bugzilla.novell.com/show_bug.cgi?id=623477#c1). I already post a patch but I have no answer about this. The proposal solution is not the best because I prefer to have the possibility to change the minimum quantity of memory assignment to

[Mono-dev] Different behavior on Thread(ThreadEntryPoint, maxStackSize) on .net and mono?

2010-07-07 Thread Torello Querci
Hi guys, I'm testing an the behavior of Thread class on mono and VS2005. In the documentation page of MS it's specify that is maxStackSize is less of 128KB an ArgumentOutOfRangeException it's raised. This seems not to be true. Using this code I try to change the maxStackSize value and wait to

Re: [Mono-dev] build fails on genmdesc

2009-12-08 Thread Torello Querci
2009/12/4 Gerard Braad m...@gbraad.nl: Currently trying to get Mono packaged for Maemo 5 (and the N900). Unfortunately I encounter some issues. I try to build Mono 2.4.2.3 in scratchbox using the host-gcc, but the build fails on ./genmdesc ./cpu-x86.md cpu-x86.h x86_desc with a make: ***

Re: [Mono-dev] C# System.Xml

2009-09-16 Thread Torello Querci
2009/9/16 Hafeez Ur Rehman hafeez.reh...@cprods.com: Hello,     I am trying to compile a very very simple console based project in MonoDevelop. After creating the console based project I just added a single line: using System.Xml; and I get the following error: The type or namespace name

[Mono-dev] [PATCH] Align the behavior of generic SortedList to .Net behavior

2009-02-06 Thread Torello Querci
Hi, can anyone review this patch that align the behavior of Keys and Values Enumerator of SortedListTKey,TValue to the behavior of .NET (I tested it on VS C# Express). Changes on UnitTest are also provided. Code is contributed under MIT/X11 license. Best Regards Torello Querci Index: mcs

Re: [Mono-list] [Mono-dev] Problem with monodevelop and Oracle

2008-04-03 Thread Torello Querci
Sorry Velazquez but this one seems to be a runtime error causedc by a misconfigured TNS network. Have you tried to use tnsping on the same server? Regards, Torello Querci 2008/4/2, Velazquez Angel [EMAIL PROTECTED]: I've recently created a simple proyect to connect from mono to Oracle, what

Re: [Mono-dev] Problem with monodevelop and Oracle

2008-04-02 Thread Torello Querci
Sorry Velazquez but this one seems to be a runtime error causedc by a misconfigured TNS network. Have you tried to use tnsping on the same server? Regards, Torello Querci 2008/4/2, Velazquez Angel [EMAIL PROTECTED]: I've recently created a simple proyect to connect from mono to Oracle, what

Re: [Mono-dev] Problem with national character set on ODBC connection

2008-02-18 Thread Torello Querci
Hi Mads 2008/2/18, Mads Bondo Dydensborg [EMAIL PROTECTED]: onsdag 13 Februar 2008 skrev Torello Querci: Hi to all . I try to make an ODBC connection on windows environment. Using normal ascii character that code work fine, but if there is some national character, the result

Re: [Mono-dev] Problem with national character set on ODBC connection

2008-02-14 Thread Torello Querci
Hi andrea 2008/2/14, Andreas Nahr [EMAIL PROTECTED]: Don't use mkbundle in the first place. I can't touch the server configuration because is the production server, so the use of mkbundle is preferred I doubt that it is able to magically embedd just the I18N resources you want (because

[Mono-dev] Problem with national character set on ODBC connection

2008-02-13 Thread Torello Querci
Hi to all . I try to make an ODBC connection on windows environment. Using normal ascii character that code work fine, but if there is some national character, the result is wrong. The result is wrong only if I make a bundle, not if I use mono program_name.exe or if I use .NET. I tried both

Re: [Mono-dev] Config file w/ mkbundle

2007-12-20 Thread Torello Querci
Hi Ricardo, I make some test at the beginning of November about this. Unfortunately seems not work. I talk with Atsuschi and he tell me that this problem is now fixed but I not make any test, sorry. Best Regards, Torello Querci 2007/12/19, Ricardo Ruiz [EMAIL PROTECTED]: I wish to use a config

Re: [Mono-dev] Mono and Gnome

2007-12-12 Thread Torello Querci
of this library with a subset of dependency library is a good thing, I suppose. This can be useful not only for OLPC where Gnome is missing, but also in other embedded system like nokia maemo where gnome is present but someone dependency can to be absent. Bye, Torello Querci Hello, I want to port

Re: [Mono-dev] Mono and Gnome

2007-12-12 Thread Torello Querci
of this library with a subset of dependency library is a good thing, I suppose. This can be useful not only for OLPC where Gnome is missing, but also in other embedded system like nokia maemo where gnome is present but someone dependency can to be absent. Bye, Torello Querci

[Mono-dev] Mono and Gnome

2007-12-10 Thread Torello Querci
? Thank's Best Regard Torello Querci ___ Mono-devel-list mailing list Mono-devel-list@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-devel-list

[Mono-dev] Problem with Configuration Manager

2007-10-30 Thread Torello Querci
for my english. Best Regard, Torello Querci --- using System; using System.Configuration; namespace ConfigurationBug { class MainClass { public static void Main(string[] args

Re: [Mono-dev] Problem with Configuration Manager

2007-10-30 Thread Torello Querci
() in at ConfigurationBug.MainClass.Main(System.String[] args) The mono version that I use is mono1.2.5-1 Best Regards, Torello Querci 2007/10/30, Petit Eric [EMAIL PROTECTED]: first try to replace : Console.WriteLine(There is not configuration file :(.); by Console.WriteLine

[Mono-dev] Problem with sqlite and Win2000

2007-09-07 Thread Torello Querci
assembly on Linux and WinXP to run 10 query I have no problem. Any suggestion? Is a mono bug or Windows bug that is fixed in some service pack that is not installed? If you want I realize a small program to show this behavious. Thank's in advance (and sorry for my english) Best Regards Torello

[Mono-dev] Problem to run mon Gtk# and sqlite application on Windows platform

2007-02-12 Thread Torello Querci
Hi to all ... I realize an application using mono, C#, Gtk# and sqlite. I have several problem to run the application on Windows environment. The first problem is related to MessageDialog modal window. Infact when I try to build a MessageDialog this appared on the screen, but if I try to click on