Re: [Mono-dev] Cross Platform on Linux/Windows with Mono.Posix reference on Linux

2016-03-30 Thread Alan
all round is to just rely on the system one, if at all possible :) Alan On 30 March 2016 at 13:06, Chris Swiedler <cswied...@trionworlds.com> wrote: > To Alan's point, we did see crashes when we (unintentionally) deployed > Mono.Posix.dll along with our app. Our solution was,

Re: [Mono-dev] Cross Platform on Linux/Windows with Mono.Posix reference on Linux

2016-03-30 Thread Alan
Heya, If you package Mono.Posix.dll your app *will crash* on different systems. This binary is platform specific and is not safe to copy between OS's. It is also matched with a platform specific native binary, libmonoposixhelper.[dll|dylib|so], which cannot be copied/pasted across platforms

Re: [Mono-dev] WebRequest timeouts after ThreadPool exhaustion

2016-02-12 Thread Alan
Hey, We have just fixed some issues in that area. They are expected to ship as part of a the next mono 4.3+ release. If you want to test them out in the meantime you could try building mono with this PR [0] and see if it resolves all your issues. If it doesn't then a testcase and bug report on

Re: [Mono-dev] WebRequest timeouts after ThreadPool exhaustion

2016-02-12 Thread Alan
already. Alan On 12 February 2016 at 13:48, Alan <alan.mcgov...@gmail.com> wrote: > Hey, > > We have just fixed some issues in that area. They are expected to ship as > part of a the next mono 4.3+ release. If you want to test them out in the > meantime you could try building

Re: [Mono-dev] mono 4.0.0 xbuild won't build project

2015-06-03 Thread Alan
Can you use a pastebin to attach the actual file you're trying to build? The text you attached has two syntax errors in it and would not work as-is. A slightly modified file works as expected for me: https://gist.github.com/alanmcgovern/c2772a9cafd0d6a5b5ee Hope that helps! Alan On 3 June 2015

Re: [Mono-dev] mono 4.0.0 xbuild won't build project

2015-06-03 Thread Alan
You didn't tell xbuild to build anything and you didn't set a default target in your proj file. Try `xbuild /t:Build Pash.proj` On 2 June 2015 at 23:29, Alexander Köplinger alex.koeplin...@outlook.com wrote: Yeah, but it's much easier on another machine since we got the official packages for

Re: [Mono-dev] mono 4.0.0 xbuild won't build project

2015-06-03 Thread Alan
and no default target was set. So if there is a bug we will need the actual output (with /verbosity:diagnostic passed to xbuild) when trying to build the actual proj file. Alan On 3 June 2015 at 12:29, Alexander Köplinger alex.koeplin...@outlook.com wrote: You didn't tell xbuild to build anything and you

Re: [Mono-dev] mono-2.11.4 on Solaris 11.1

2014-01-13 Thread Alan
Before submitting pull requests you should check to see if the issue still exists in the latest code. Mono 2.11.4 was released about 18 months ago. Alan On 12 January 2014 01:12, Andrés G. Aragoneses kno...@gmail.com wrote: On 11/01/14 22:00, Grüninger, Andreas (LGL Extern) wrote: Hi all

Re: [Mono-dev] Anyone taking care of TPL dataflow?

2013-12-26 Thread Alan
mean a tremendous amount unless that specific bug is affecting you. 'mono' is millions of lines of code so it's quite likely you will never encounted 99% of the bugs in bugzilla. Alan On 26 December 2013 14:50, Rafael Teixeira mono...@gmail.com wrote: I think that starting some bounties

Re: [Mono-dev] Contributing to xbuild

2013-09-04 Thread Alan
looking forward to your contributions! Alan ___ Mono-devel-list mailing list Mono-devel-list@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-devel-list

Re: [Mono-dev] Using profiler in mono 3.0.x (is this still a working feature?)

2013-03-18 Thread Alan
I believe the GC related profiling options, like allocation tracking or heap-shot, only work with sgen. The performance related options work irrespective of the GC being used. Alan On 18 March 2013 23:17, Andres G. Aragoneses kno...@gmail.com wrote: On 18/03/13 22:57, Esben Laursen wrote: Den

Re: [Mono-dev] New GSoC projects

2013-02-26 Thread Alan
than 2 weeks to fix issues and add tests to verify the behaviour. Alan On 26 February 2013 06:06, quandary quandar...@hailmail.net wrote: I don't know how good it is for a student project, but one of the things that have annoyed me quite a bit in the past is the lack of automatic indentation

Re: [Mono-dev] New GSoC projects

2013-02-25 Thread Alan
We still have to organise ourselves for this year, but feel free to start thinking about projects and talking to us about ideas you might have. Join our IRC channels: Server: irc.gimp.net Channels: #mono #monodev #monodevelop #monosoc Alan On 25 February 2013 02:53, Udesh Liyanaarachchi

Re: [Mono-dev] Dictionary implementation + concurrency

2013-02-04 Thread Alan
ConcurrentDictionary. This is the only realistic way of having thread safe code. Alan On 4 February 2013 10:18, Rafael Teixeira mono...@gmail.com wrote: Yes, please. Rafael Monoman Teixeira --- The most exciting phrase to hear in science, the one that heralds new

Re: [Mono-dev] Dictionary implementation + concurrency

2013-02-04 Thread Alan
which is not a guarantee. Alan On 4 February 2013 10:46, Greg Young gregoryyou...@gmail.com wrote: The .NET version does support it for types or reference size or smaller. My guess the reason its not explicitly documented is that its only for types reference or smaller. On Mon, Feb 4, 2013 at 12

Re: [Mono-dev] Marshal.GetFunctionPointerForDelegate and non-mono threads

2013-01-29 Thread Alan
and then the runtime aborts. This is much easier to debug than a random crasher. Alan On 29 January 2013 07:49, Yuriy Solodkyy y.solod...@gmail.com wrote: Do you keep a reference to your delegate while using the pointer? I suspect GC just collect your delegate and function pointer becomes invalid. -yuriy

Re: [Mono-dev] Marshal.GetFunctionPointerForDelegate and non-mono threads

2013-01-28 Thread Alan
Do you see these issues when running with the soft debugger attached? If so, that was a bug which was fixed a few days ago. If you're seeing the issue without the debugger, a small testcase would be great for figuring this out. Alan On 28 January 2013 18:42, sebastian sebast

Re: [Mono-dev] names differing only by case in git repo?

2013-01-27 Thread Alan
It's a mistake. We'll get it fixed! Alan On 27 January 2013 01:49, Bang Jun-young junyo...@mogua.com wrote: I have the same problem on Windows. Two of those files have invisible trailing spaces in their names. I'm curious how they could have been committed in the first place. A bug in Git

Re: [Mono-dev] gtk-sharp on android possible?

2012-12-03 Thread Alan
. It is highly unlikely for it to be worth your while investing in a Gtk+ port and then rewriting your UI anyway. Alan On 3 December 2012 09:00, Elmar Haneke el...@haneke.de wrote: I have been developing applications for linux/windows by using mono and gtk-sharp. Once you have GTK+ libs for Android

Re: [Mono-dev] TCP + async

2012-09-19 Thread Alan
Have you submitted the change as a pull request on github? Alan On 19 September 2012 13:43, Greg Young gregoryyou...@gmail.com wrote: We have had a patch for a while related to a problem we ran into with TCP https://github.com/ysw/mono-socket-problem/blob/master/Patches/cb_fix.patch Its

Re: [Mono-dev] ConcurrentQueue

2012-08-10 Thread Alan
Hey, What version of Mono are you testing against? Alan On 10 August 2012 09:52, Greg Young gregoryyou...@gmail.com wrote: We regularly can cause problems with ConcurrentQueue such as System.NullReferenceException: Object reference not set to an instance of an object

Re: [Mono-dev] Incompatibility

2012-08-10 Thread Alan
If you want, you could implement the correct behaviour and then submit the patch with that unit test attached as a github pull request. We will easily and quickly be able to merge the new behaviour in then. Alan On 10 August 2012 18:10, Greg Young gregoryyou...@gmail.com wrote: I'm fine

Re: [Mono-dev] ConcurrentStack with value type in 2.10

2012-07-23 Thread Alan
I cannot reproduce the problem either. What exact version of 2.10 did you test against? It's possible the bug has already been fixed in a newer release of the 2.10 series. Alan On 23 July 2012 13:32, Rodrigo Kumpera kump...@gmail.com wrote: Hi Yuriy, With how many cores and on what CPU did

Re: [Mono-dev] Mono 2.10.8 SIGSEGV

2012-07-17 Thread Alan
terminating in a random way at a random time. Alan On 17 July 2012 12:26, Matthias D. matth...@googlemail.com wrote: Hi, it was a Gtk# threading issue, which is now resolved. Everything works surprisingly good now on the mono side. I'm wondering, gtk is a native api, but it would make sense

Re: [Mono-dev] Should i submit my Winforms queued patches here or github?

2012-06-20 Thread Alan
on github 2) Create a new branch in your fork with all the change you want in your pull request 3) Submit a pull request for that branch Alan On 20 June 2012 14:06, Rob Wilkens robwilk...@gmail.com wrote: Now that I have all of the Winforms patches (for Datagrid and Idle) extracted into individual

Re: [Mono-dev] C# project export to Linux fails - lots of errors

2012-06-19 Thread Alan
Banshee uses gstreamer as a cross platform media playback framework. What you need to do is look at Banshees source code to see how they use gstreamer and then port your app to use that on Linux/MacOS. You can continue using WMP on windows if you wish. Alan On 19 June 2012 11:16, Achim123

Re: [Mono-dev] Restart my fork?

2012-06-17 Thread Alan
want to make a new fix. When you are done you can push the new local branch to your fork using the syntax: git push origin NEW_BRANCH_TO_FIX_FOOBAR That pushes the curreny branch to a remote branch of the specified name. Hope that helps, Alan On 17 June 2012 15:29, Stifu st...@free.fr wrote: One

Re: [Mono-dev] C# project export to Linux fails - lots of errors

2012-06-17 Thread Alan
platform backend and ensure it's available on all systems your app is run on. For example on windows you could use WMP. On Linux you could use gstreamer. On MacOS you could probably use CoreAudio or CoreVideo, or maybe something else. I'm not sure what'd be appropriate. Alan On 17 June 2012 18:02

Re: [Mono-dev] MonoWrench Windows builds

2012-06-11 Thread Alan
Hi, I'll get in touch with the right people internally and see if we can get this fixed. Thanks, Alan On 11 June 2012 12:11, Filip Lundgren fi...@inkdev.net wrote: Does anyone have any clue why MonoWrench is queuing, but not building any Windows builds at the moment? We are looking

Re: [Mono-dev] Compiling mono? I give up [not proceeding] - if anything obvious i'm doing wrong let me know

2012-05-01 Thread Alan
versions of mono. Alan On 1 May 2012 09:53, Oskar Berggren oskar.bergg...@gmail.com wrote: 2012/5/1 Rob Wilkens robwilk...@gmail.com: [apologies if duplicated - i sent from wrong account at first and don't think it went through] I hate trying to get other people's program's to build properly

Re: [Mono-dev] Compiling mono? I give up [not proceeding] - if anything obvious i'm doing wrong let me know

2012-05-01 Thread Alan
this is just a different branch in the regular gtk-sharp repository. Alan On 1 May 2012 13:45, Rob Wilkens robwilk...@gmail.com wrote: Ok, I've managed to get rid of most of my errors via using the parallel build environment configuration... But I've got one more error preventing me from proceeding

Re: [Mono-dev] Mono Maintainers list

2012-04-16 Thread Alan
Was this stored in git in a 'MAINTAINERS' file? If not, why not? This would be the ideal place for it to be located as it'd be simple for people to find and update it as all maintainers have write access to there :) Alan On 16 April 2012 08:57, Jb Evain jbev...@gmail.com wrote: Hey, On Apr 10

Re: [Mono-dev] System.Json is ready to be replaced

2012-03-28 Thread Alan
Hey, I wonder if we'd be better off deleting the actual code from our repository and pulling it directly from the microsoft one via a git submodule. It should be an easier way to keep things up to date and also simpler to maintain patches/modifications (should any be required). Alan On 28 March

Re: [Mono-dev] GSoC 2012 Proposal - WPF

2012-03-28 Thread Alan
are implemented. Nothing is stopping anyone from beginning this work. However the Mono Project itself does have a lot of projects which would be significantly higher priority to both us and the community. As such, it is unlikely this would be accepted as a SoC project. Alan On 28 March 2012 20:14

Re: [Mono-dev] System.IO.Packaging throws NullReferenceExeption

2012-02-09 Thread Alan
from the microsoft framework, that would make it faster for me to ensure things are generated correctly. Thanks! Alan On 9 February 2012 13:03, CikaPero1 cika.pe...@gmail.com wrote: Hi, Does anyone know why the code below throws an exception? The code below works with MS Visual Studio

Re: [Mono-dev] Mono[CoreCLR] security attributes in Platform assembly

2012-02-09 Thread Alan
The best documentation for this is: http://www.mono-project.com/CoreClrHowTo#Profiles and the other pages it links to. Alan On 9 February 2012 06:11, Anshya Aggarwal anshya.aggar...@gmail.com wrote: Hi Alan, As you said I am already embedding mono in my framework, enabling core-clr and also

Re: [Mono-dev] Mono[CoreCLR] security attributes in Platform assembly

2012-02-08 Thread Alan
and is useless unless you are also embedding mono and do all necessary function calls when loading libmono to enable coreclr. http://www.mono-project.com/CoreClrHowTo Alan On 8 February 2012 09:20, Anshya Aggarwal anshya.aggar...@gmail.com wrote: Hi All, I am building the mono with --with-moonlight

Re: [Mono-dev] Build fails: name `AllowReversePInvokeCallsAttribute' does not exist

2012-02-03 Thread Alan
: http://www.mono-project.com/Parallel_Mono_Environments Alan On 3 February 2012 12:16, Markku Tavasti tava...@seravo.fi wrote: 2012/2/1 Alan alan.mcgov...@gmail.com Is there a mono package available for your distro? If so, just install that. For latest release, no. I Installed latest packages

Re: [Mono-dev] Build fails: name `AllowReversePInvokeCallsAttribute' does not exist

2012-02-01 Thread Alan
Is there a mono package available for your distro? If so, just install that. Alan On 1 February 2012 09:41, Markku Tavasti tava...@seravo.fi wrote: 2012/2/1 Markku Tavasti tava...@seravo.fi make[5]: Entering directory `/home/tavasti/build/mono/mcs' /bin/sh .//mkinstalldirs build/deps

Re: [Mono-dev] We should add Novice bugs tag in bugzill to new contributer

2012-01-18 Thread Alan
and then start asking questions until you're able to solve it. Alan On 18 January 2012 17:12, Sharique uddin Ahmed Farooqui saf...@gmail.comwrote: Sharique uddin Ahmed Farooqui http://safknw.blogspot.com/ Peace is the Ultimate desire of mankind. On Wed, Jan 18, 2012 at 9:00 PM, Elmar Haneke el

Re: [Mono-dev] compiler internal error

2011-11-17 Thread Alan
Hi, I don't know if anyone in Novell monitors bugzilla, would you be able to re-file the bug at http://bugzilla.xamarin.com ? Thanks, Alan On 16 November 2011 17:56, Giacomo Tesio giac...@tesio.it wrote: Hi, I reported this bug that is preventing me to work on my Debian box: https

Re: [Mono-dev] implementation of BitConverter [possible perf improvements?]

2011-11-17 Thread Alan
passes the regression tests (and any new ones which may be required), I'd be happy to merge it. Alan On 17 November 2011 23:44, Jonathan Shore jonathan.sh...@gmail.com wrote: I was looking at the code for the mono implementation of BitConverter and was surprised to see that common types

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

2011-11-04 Thread Alan
Hi, Mono itself has no trouble opening 1000's of files. Would you be able 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

[Mono-dev] GUI available for heap profiling under mono 2.10+

2011-09-02 Thread Alan
. It is good enough to be considered a beta application - not completely bug free but more than good enough to work with. Alan. ___ Mono-devel-list mailing list Mono-devel-list@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-devel-list

Re: [Mono-dev] COM, Threads and Mono

2011-09-02 Thread Alan
The System.Windows.Forms sync context runs stuff on the winforms main loop, so wouldn't it be prone to exactly the message pumping related deadlocks that were already described? Alan On 2 September 2011 18:30, Robert Jordan robe...@gmx.net wrote: Hi Jonathan, How about relying

Re: [Mono-dev] HeapShot like GUI

2011-08-31 Thread Alan
the code out from here: https://github.com/slluis/heap-shot . All you need to build is the HeapShot GUI and related tooling, so just open the project in MonoDevelop or use xbuild. Alan 2011/8/31 Konrad M. Kruczyński konrad.kruczyn...@gmail.com Hi, is there some kind of HeapShot like GUI

Re: [Mono-dev] Performance issue with DataTable.Load on large data sets

2011-04-13 Thread Alan
Hey, On Tue, Apr 12, 2011 at 11:09 AM, Nicklas Overgaard nick...@isharp.dk wrote: Hey Alan, Thanks for picking it up :) Firstly the simple change of moving the BeginLoad/EndLoad out of the loop could easily be committed as a separate patch. If it's possible to verify this change

Re: [Mono-dev] Performance issue with DataTable.Load on large data sets

2011-04-12 Thread Alan
, in which case the modifications would have to be conditionally built. Alan On Tue, Apr 12, 2011 at 9:41 AM, Nicklas Overgaard nick...@isharp.dk wrote: Hi again, I have now made further optimizations, which brings the Load method up to speed with the .net implementation. However, 5 of the regression

Re: [Mono-dev] StackOverflow on System.Delegate.Equals

2011-04-04 Thread Alan
Aren't event handler methods emitted with a [synchronized] attribute by default which would prevent this issue? You can check by disassembling the IL and seeing if its there. Alan On 4 Apr 2011 14:55, kr...@poczta.onet.pl wrote: W dniu 2011-03-30 22:07:45 użytkownik Miguel de Icaza mig

Re: [Mono-dev] StackOverflow on System.Delegate.Equals

2011-04-04 Thread Alan
like for string operations. If what we're seeing is truly a corrupt delegate instance then it's a bug in mono that this is able to occur. Alan On Mon, Apr 4, 2011 at 10:54 PM, kr...@poczta.onet.pl wrote: On Mon, 2011-04-04 22:41:47 nekresh nekr...@gmail.com wrote: On Mon, Apr 4, 2011 at 10:37 PM

Re: [Mono-dev] (no subject)

2011-03-21 Thread Alan
no benefit to anyone. A better task would be to take some unimplemented or poorly implemented APIs and either implementing or improving them as appropriate. Alternatively you could look at our list of available projects. Alan. On Sun, Mar 20, 2011 at 8:21 PM, Adam Balan a-k...@hotmail.com wrote:  I

Re: [Mono-dev] Unable to build neither Mono 2.10.1 nor 2.10

2011-03-19 Thread Alan
The rabbitmq issue should be fixed as of a couple of weeks ago. If you hit any other issues with parallel builds do let us know. I normally build with -j8 and occasionally hit build breakages but I haven't been able to track down the issue. Alan. On Sat, Mar 19, 2011 at 8:21 PM, Leszek

Re: [Mono-dev] Implementation of SetPropertyItem

2010-11-24 Thread Alan
out http://bugzilla.novell.com for that bug number and you'll see why the code is disabled. Alan. On Tue, Nov 23, 2010 at 6:41 PM, Patrick Kowalzick patrick.kowalz...@web.de wrote: Dear List, I found that System.Drawing.Image::SetPropertyItem throws a NotImplementedException. The code from

Re: [Mono-dev] Moonlight basics - Overview

2010-11-09 Thread Alan
is silverlight for Linux (and more, potentially). - Why Moonlight? - Architecture - Pros and Cons - Sample websites Any documentation on silverlight applies equally to moonlight as they are the same thing just on different platforms. Hope that helps, Alan. Regards, Sasi Rekha

Re: [Mono-dev] Moonlight basics - Overview

2010-11-09 Thread Alan
http://en.wikipedia.org/wiki/Mono_%28software%29 That should help at least partially. Alan. On Tue, Nov 9, 2010 at 4:17 PM, Sasi Rekha Kristam sasirekha.kris...@gmail.com wrote: I wouldn't have got this mailing list id unless i have searched the web. Reply to the e-mail only if u can help

Re: [Mono-dev] High Traffic Site (for Harry Potter 7) is crashing!

2010-10-26 Thread Alan
Did you read through the docs here? http://www.mono-project.com/Mod_mono#Limiting_the_number_of_concurrent_requests . It covers increasing the concurrent users in a variety of different ways. Alan. On Tue, Oct 26, 2010 at 9:59 PM, Matthew Urbano matthew.urb...@trailerpark.com wrote: I've

Re: [Mono-dev] mono.simd

2010-08-27 Thread Alan
I think you missed the important part of that last email. If wanted you to state the license of the patch, then commit it :) Alan. On 27 Aug 2010 02:10, Jerry Maine - KF5ADY crashfou...@gmail.com wrote: Please, I found this bug to be very annoying as it hampers the use of dynamic languagues

Re: [Mono-dev] Migration to GitHub completed!

2010-07-28 Thread Alan
, this is correct. The download size is a bit bigger than with svn but not significantly so. Note that this single repo is the combination of the old 'mono' and 'mcs' modules which were in SVN. You don't have to make two separate checkouts anymore. Alan I guess not really since it's downloading

Re: [Mono-dev] github workflow proposals

2010-07-27 Thread Alan
For commit messages, how about gnome style ones? http://live.gnome.org/Git/CommitMessages We'll end up with messages like this: http://github.com/mono/moon/commit/feadf070d237c1227ff2709cf1d0131d267118e2:) Alan. On Tue, Jul 27, 2010 at 11:16 PM, Mark Probst mark.pro...@gmail.com wrote

Re: [Mono-dev] Problem in SvcHttpHandler.cs ?

2010-07-06 Thread Alan McGovern
, there's nothing the browser can do. If I remeber correctly there is an explanation of this on msdn somewhere. Alan On 6 Jul 2010, at 05:08, Atsushi Eno atsushi...@veritas-vos-liberabit.com wrote: Hello Thiago, Thanks, there's a lot of major and minor missing functionalities all around

Re: [Mono-dev] Bug 470120 - Socket.EndSend unexpectedly fails with WSAEWOULDBLOCK

2010-06-10 Thread Alan McGovern
information about exactly what's broken to the bug report. Alan. On Thu, Jun 10, 2010 at 3:01 PM, yoni shalom silve...@gmail.com wrote: shameless ping... On Mon, Jun 7, 2010 at 11:03 AM, yoni shalom silve...@gmail.com wrote: Does anyone know the status of this bug ? It was found in 2.4.x, theres

Re: [Mono-dev] Compiler bug in foreach

2010-05-30 Thread Alan McGovern
There was a regression in trunk about 2 weeks ago which was fixed about 4 days ago which was very similar to this. However your testcase appears to fail on both mono 2.6.4 and svn trunk. Would you be able to file a bug report with this testcase? Thanks! Alan. On Sat, May 29, 2010 at 2:11 AM

Re: [Mono-dev] Compiler bug in foreach

2010-05-30 Thread Alan McGovern
. Alan. On Sun, May 30, 2010 at 4:53 PM, Alan McGovern alan.mcgov...@gmail.com wrote: There was a regression in trunk about 2 weeks ago which was fixed about 4 days ago which was very similar to this. However your testcase appears to fail on both mono 2.6.4 and svn trunk. Would you be able to file

Re: [Mono-dev] System.NotImplementedException: The requestedfeature is not implemented. atSystem.ServiceModel.Configuration.WSHttpBindingElement.OnApplyConfiguration

2010-05-25 Thread Alan McGovern
issue. That'd be significantly less time than porting to java. You'd have to way up the pros and cons of rewriting in java. The biggest con is that you have doubled your maintainance burden if you have the same code in two languages. Alan. On Tue, May 25, 2010 at 9:09 PM, Greg Robinson gregarobin

Re: [Mono-dev] bug or wrong mono compilation?

2010-05-23 Thread Alan McGovern
It works fine with r156922 from SVN. When building from trunk, always give the svn revision that you built with. Alan. On Sat, May 22, 2010 at 5:36 PM, xplicit s...@ngs.ru wrote: I have compiled mono 2.7 from trunk and try to use C# 4.0 features. I wrote simple program: using System

Re: [Mono-dev] mono debugger

2010-05-13 Thread Alan McGovern
You're installing a trunk build of mono with a 2.6.3 release of the debugger. This is a mismatch. As Michael said, SDB is built into the runtime these days so could more than likely just use that. Alan. On Wed, May 12, 2010 at 7:03 PM, sberryman sh...@golfsigma.com wrote: I don't have

Re: [Mono-dev] mono debugger

2010-05-12 Thread Alan McGovern
and the debugger or svn of both mono and the debugger. Alan. On Wed, May 12, 2010 at 6:53 PM, sberryman sh...@golfsigma.com wrote: I've got the trunk build of mono running: Mono JIT compiler version 2.7 (/trunk/mono r157252 Wed May 12 05:23:59 UTC 2010) Copyright (C) 2002-2010 Novell, Inc

Re: [Mono-dev] [PATCH] - optimization for System.Xml.XmlNode::SelectSingleNode

2010-05-10 Thread Alan McGovern
Why would a c-cast be so much slower than an 'as' cast? Surely they should be equivalent or the c-cast should be faster. Alan. On Mon, May 10, 2010 at 7:24 PM, Atsushi Eno atsushi...@veritas-vos-liberabit.com wrote: Well, it wasn't really internal, but that does not affect my statement

Re: [Mono-dev] GroupBy Bug (Bug 601101)

2010-04-29 Thread Alan McGovern
and should be fixed. As for the actual patch, I have no comments ;) Alan On 29 Apr 2010, at 22:18, Richard Kiene richard.ki...@logos.com wrote: I have filed Bug 601101 https://bugzilla.novell.com/show_bug.cgi?id=601101 for this issue. In addition; I have attached a patch which resolves

Re: [Mono-dev] Some demo examples do not work!

2010-04-19 Thread Alan McGovern
Hey, As per error message, you're missing libgdiplus. If you install that everything should work fine. Alan On 19 Apr 2010, at 06:12, Lyndon Lu lyndon...@gmail.com wrote: Hi All, I have installed mono 2.6.3 from source files in CentOS 5. I can see that test web page Welcome

Re: [Mono-dev] Socket.BeginReceive never throw Exception

2010-04-12 Thread Alan McGovern
a testcase which can reproduce the bug 100% of the time. If that testcase could be supplied as part of the bug report, it would be so much easier to resolve the issue. All you need to do is put the testcase in a console app so that we can just compile and run it to see the issue. Thanks, Alan

Re: [Mono-dev] Socket.BeginReceive never throw Exception

2010-04-09 Thread Alan McGovern
Is there a testcase for this? This works fine for me, I'm inclined to believe there's a bug in the testcase. Alan. On Fri, Apr 9, 2010 at 4:21 PM, Stefan [At] swieser1...@gmail.com wrote: socket.BeginReceive(receive_buffer, 0, FlockNode.buffer_size, 0, new AsyncCallback(ReceiveDone), socket

Re: [Mono-dev] Build Microsoft Visual Studio Solution under Mono

2010-04-08 Thread Alan McGovern
A visual studio compiled binary and mono compiled binary are more or less identical. Just copy/paste the compiled code to a linux system and execute it there. Alan. On Thu, Apr 8, 2010 at 9:17 AM, Matt Dargavel m...@shout-telecoms.com wrote: Hi, I suggest you start here: http://www.mono

Re: [Mono-dev] Threading parameters? Fill a DataGridView via Invoke very slow

2010-04-08 Thread Alan McGovern
Can you provide a testcase demonstrating the issue. Thanks, Alan. On Thu, Mar 25, 2010 at 2:59 PM, Stifu st...@free.fr wrote: MonoDevelop on Windows uses .NET by default, not Mono. boolean wrote: Another solution with delegates instead of invoke brings no advantages. It´s curious

Re: [Mono-dev] Socket.BeginReceive never throw Exception

2010-04-08 Thread Alan McGovern
Can you provide a testcase demonstrating the bug or more clearly explain what you mean by using code samples? Thanks, Alan On Wed, Mar 24, 2010 at 1:50 AM, Pigo Chu pigo_...@hotmail.com wrote: I am designing a simple http server use Async Socket model. And test performance use ab (apache

Re: [Mono-dev] Error compiling WebConnection.cs

2010-04-08 Thread Alan McGovern
This is a known issue in our build system. run make clean and/or make distclean and then autogen and build again. That'll resolve the problem. Alan. On Mon, Mar 1, 2010 at 10:03 PM, Neale Ferguson ne...@sinenomine.net wrote: Just updated to head, did get-monolite-latest and getting this during

Re: [Mono-dev] Mono process crashes after closing client socket

2010-04-08 Thread Alan McGovern
try running your app in GDB (http://www.mono-project.com/Debugging) to try and catch the place where it blows up. Alan. On Thu, Feb 19, 2009 at 3:46 PM, FirstName LastName mousse_...@hotmail.com wrote: Hi, I'm working with mono 2.0 on a ARM.  I'm seeing a strange problem. I have a client

Re: [Mono-dev] Summer of Code / C++ Interop

2010-04-08 Thread Alan McGovern
being selected. Alan. On Thu, Apr 8, 2010 at 10:25 AM, Alex Corrado alexander.corr...@gmail.com wrote: Dear Mr. de Icaza and the Mono Developer Community, First, I would like to salute you for producing an excellent, open platform for software development. Second, I would like to apologize

Re: [Mono-dev] Your help needed for our upcoming release.

2010-02-25 Thread Alan McGovern
This bug was fixed for 2.4.3 but has regressed again. https://bugzilla.novell.com/show_bug.cgi?id=583451 Would it be possible to get this fixed for 2.4.4+ ? It does work in the 2.6 branch as of r151801, so no need to prioritise this one now ;) Alan. On Tue, Feb 23, 2010 at 11:04 PM, Miguel de

Re: [Mono-dev] Custom Uri Parsing

2010-02-19 Thread Alan McGovern
Hey, On Fri, Feb 12, 2010 at 6:52 PM, Matt Dargavel m...@shout-telecoms.comwrote: Thanks for the info Alan. At the moment I’ve put together a very quick and dirty version that uses IsPredefinedScheme to decide whether to use the existing parsing code or use the registered Parser class

Re: [Mono-dev] Questions about csharp-sqlite - port of the SQLite library from C to C#

2010-02-13 Thread Alan McGovern
be appreciated by the community though. Alan. On Sat, Feb 13, 2010 at 9:22 PM, Daniel Morgan monodanm...@yahoo.comwrote: I have asked some questions at the FAQ for csharp-sqlite. http://code.google.com/p/csharp-sqlite/wiki/FrequentlyAskedQuestions csharp-sqlite is a C# port of the SQLite library

Re: [Mono-dev] Custom Uri Parsing

2010-02-11 Thread Alan McGovern
ridiculously complicated internally. While the existing code will be useful as a guide, you will end up chopping it up into tiny pieces and moving it around into the different parser subclasses. Alan. p.s. The above should be mostly accurate, but the last time I looked at this was when I sent the original

Re: [Mono-dev] BufferedStream.ReadByte and WriteByte are extremely inefficient

2010-01-11 Thread Alan McGovern
be: if m_buffer.Length == 0 as the case where the Length is = 0 is already handled. It makes things easier to understand. Thanks, Alan. On Mon, Jan 11, 2010 at 10:53 PM, Tom Philpot tom.phil...@logos.com wrote: Sorry, for double posting this patch. Snow Leopard's Mail.app w/ Exchange support turned my

Re: [Mono-dev] BufferedStream.ReadByte and WriteByte are extremely inefficient

2010-01-11 Thread Alan McGovern
Actually, ignore the part about the 1 = m_buffer.Length. On second reading that's fine ;) Alan. On Mon, Jan 11, 2010 at 11:24 PM, Alan McGovern alan.mcgov...@gmail.comwrote: Hey, This patch does three things: 1) Optimises away some allocations - good 2) Added extra checks which throw

Re: [Mono-dev] LLVM Expectations

2009-12-26 Thread Alan McGovern
and will be for a long time. Alan. -- View this message in context: http://old.nabble.com/LLVM-Expectations-tp26930912p26930912.html Sent from the Mono - Dev mailing list archive at Nabble.com. ___ Mono-devel-list mailing list Mono-devel-list

Re: [Mono-dev] Announcing the release of Mono 2.4.3

2009-12-09 Thread Alan McGovern
There were two commits to SVN with regards to this bug so it looks like it was accidently not closed. CC'ing the guy who committed those fixes as he'd be the one to know whether it should be closed or not. Alan. On Wed, Dec 9, 2009 at 10:41 PM, Oskar Berggren oskar.bergg...@gmail.comwrote

Re: [Mono-dev] StyleCop incompatibility

2009-12-08 Thread Alan McGovern
According to the rule - any using statement starting with System. should be sorted first. It's nothing to do with the assembly that the namespace comes from. Alan. On Tue, Dec 8, 2009 at 11:27 AM, Andrew Mikhailov and...@vitche.com wrote: The MS defines a code-style rule for the order

Re: [Mono-dev] Why not build official site on ASP.NET? Mono should enhance server performance and stability!

2009-12-07 Thread Alan McGovern
connections. If you're seeing issues with running out of threads and connections being dropped as a result, just export MONO_THREADS_PER_CPU=100 to increase the maximum number of allowed threads and see if that helps. Feel free to vary the number up or down as appropriate. Alan. On Mon, Dec 7, 2009

Re: [Mono-dev] Why not build official site on ASP.NET? Mono should enhance server performance and stability!

2009-12-07 Thread Alan McGovern
with a large number of actively transferring connections ( 50) I only need a handful of threadpool threads. If you starve the threadpool, your performance will suffer accordingly ;) Alan. On Mon, Dec 7, 2009 at 8:17 PM, Alan McGovern alan.mcgov...@gmail.comwrote: Hey, MonoTorrent uses the standard

Re: [Mono-dev] Problem with PackagePart URI containing spaces

2009-11-23 Thread Alan McGovern
. Thanks, Alan. On Mon, Nov 23, 2009 at 11:53 AM, mhartmann mhartm...@vr-web.de wrote: Hi, I'm trying to read packages that were created with System.IO.Packaging on a Windows machine using .NET. It seems that that there is a problem with PackageParts that contain spaces in the specified

Re: [Mono-dev] Problem with PackagePart URI containing spaces

2009-11-23 Thread Alan McGovern
for it as it should be there within a day or so. Thanks, Alan. p.s. You forgot to hit 'reply-all' with your last email. I've added the mailing list back into the CC but just look out for that in future. On Mon, Nov 23, 2009 at 2:51 PM, mhartm...@vr-web.de wrote: Hi, can you give me a hint which

Re: [Mono-dev] Should we replace MemoryStream?

2009-11-09 Thread Alan McGovern
if your application allocates 10 chunked memory streams a second and Dispose () them when you're done, you could add/remove the 'chunks' from a cache. This way you'd only ever allocate 10xsizeof (chunked stream) bytes of memory and you'd constantly re-use them. Alan. Like I said, I feel like

Re: [Mono-dev] faster than hashtable?

2009-10-28 Thread Alan McGovern
don't know. Alan. On Wed, Oct 28, 2009 at 8:25 AM, Tom Spink tsp...@gmail.com wrote: 2009/10/27 psant...@codicesoftware.com psant...@codicesoftware.com: Hi, If you need to store key/value pairs, where the key will be ALWAYS a unique long (no collisions), is there anything better than

Re: [Mono-dev] faster than hashtable?

2009-10-28 Thread Alan McGovern
Really what you need to do is benchmark all of the different options using your expected workload. It's near useless us telling you X is faster or Y is better without knowing the workload involved. Alan. On Wed, Oct 28, 2009 at 2:40 PM, pablosantosl...@terra.es pablosantosl...@terra.es wrote

Re: [Mono-dev] faster than hashtable?

2009-10-28 Thread Alan McGovern
Hey, On Wed, Oct 28, 2009 at 4:30 PM, pablosantosl...@terra.es pablosantosl...@terra.es wrote: Sure Alan! So, basically, the options are: - Use a sorted ArrayList and a binary search For this option the same story applies as for Dictionary K,V. If you write a strongly typed sorted list

Re: [Mono-dev] Why system.net.webresponse not implemented?

2009-10-23 Thread Alan McGovern
What makes you think it's not implemented? If you're attempting to subclass WebResponse and are seeing NotImplemented exceptions, it's because you must override those particular methods (and not call the base method!) and you have not done so. The behaviour is the same on MS.NET. Alan. On Fri

Re: [Mono-dev] Big performance gaps between .NET, Mono (Suse/Debian) ?

2009-10-06 Thread Alan McGovern
add elements to a Dictionary, pre-allocate all the objects first and then time just the addition. Alan. On Tue, Oct 6, 2009 at 10:15 AM, Lionel Cuir lionel_em...@aulofee.comwrote: Hello, Can anybody help me to understand why, on simple performance tests, I see so different results between

Re: [Mono-dev] 2.6 preview 1

2009-10-01 Thread Alan McGovern
. If you're seeing a huge difference in the exact same code it might be worth filing a bug. Alan. -L Andrew Jorgensen-4 wrote: The first preview build of 2.6 has been published to http://mono.ximian.com/monobuild/preview/download-preview/ The windows installer in this build is known

Re: [Mono-dev] .NET / Mono runtime multi-cast differences.

2009-08-24 Thread Alan McGovern
it is you're seeing, what are listenChannel and listenEndpoint? Alan. On Mon, Aug 24, 2009 at 3:20 AM, James P Michels III james.p.mich...@gmail.com wrote: I have observed a difference in behavior between the Mono runtime and .NET runtime with respect to multi-cast support. Unless

Re: [Mono-dev] [PATCH] ParallelFx initial code drop

2009-07-28 Thread Alan McGovern
of legacy reasons. Some of the parallel fx files already exist in that location and it'd be a pain to move them all to the 'correct' location now. Alan. Miguel seems to have the same idea as me apart that I commit the new types directly instead of providing a patch. The new types can be added

  1   2   3   >