Re: [Mono-list] Mono does not include full stacktrace while rethrowing exception

2016-06-22 Thread Alan
ET or mono without hacking up every method because that stackframe may not actually exist at runtime. This is especially true if you're running F#. Alan On 22 June 2016 at 10:36, Алексей Богомолов <horse...@gmail.com> wrote: > Hi, Alan! I understand inlining in Release configuration. I shou

Re: [Mono-list] Mono does not include full stacktrace while rethrowing exception

2016-06-21 Thread Alan
This happens on .NET too. This gives a good description of what's happening and why. http://www.hanselman.com/blog/ReleaseISNOTDebug64bitOptimizationsAndCMethodInliningInReleaseBuildCallStacks.aspx Alan On 21 June 2016 at 09:31, Алексей Богомолов <horse...@gmail.com> wrote: > This

Re: [Mono-list] Why is 0.1f + 0.2f - 0.3f produces such a large error number?

2016-05-23 Thread Alan
to implement the calculation which triggers this negligible difference. On 23 May 2016 at 13:59, MarLOne <infoseeker...@gmail.com> wrote: > Hi Alan, > > While all this is find it does not explain the following observation using > the same CPU: > VS2015 the delta is zero > >

Re: [Mono-list] Why is 0.1f + 0.2f - 0.3f produces such a large error number?

2016-05-17 Thread Alan
You could also google for discussions about adding 0.1 and/or 0.2 multiple times. That has fun results in every language too, for example http://stackoverflow.com/questions/26120311/why-does-adding-0-1-multiple-times-remain-lossless On 17 May 2016 at 13:23, Alan <alan.mcgov...@gmail.com>

Re: [Mono-list] Why is 0.1f + 0.2f - 0.3f produces such a large error number?

2016-05-17 Thread Alan
as the calculation is performed in hardware, not in software. Some languages/compilers may provide more explicit control on which CPU instruction you end up using and which floating point precision mode is enabled. Alan On 17 May 2016 at 12:32, MarLOne <infoseeker...@gmail.com> wrote: &g

Re: [Mono-list] Why is 0.1f + 0.2f - 0.3f produces such a large error number?

2016-05-15 Thread Alan
to compute the value. .NET follows the IEEE 754 standard for floating point operations. Alan On 15 May 2016 at 13:02, MarLOne <infoseeker...@gmail.com> wrote: > Hi, > > I am using MonoDevelop 5.10 and > the runtime Mono 4.2.3 (Stable 4.2.3.4/832de4b Wed Mar 16 13:19:08 UTC 20 >

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-list] Regarding - SHA-2 supported version in mono

2015-12-01 Thread Alan
I'd say trying a newer mono build first would be the best option. Either 4.2, 4.3 or master. SHA2 certs have been supported for a very long time, so if you are still having issues maybe you could provide access to some certs to reproduce the problem with? Alan On 30 November 2015 at 12:04

Re: [Mono-list] Regarding - SHA-2 supported version in mono

2015-12-01 Thread Alan
Take a look here, it has the up to date info on sles package: http://www.mono-project.com/docs/getting-started/install/linux/#opensuse-and-sles Alan On 1 December 2015 at 11:48, Kaushik Velusamy <kaushikvelus...@gmail.com> wrote: > Thanks for the info Alan. > > This issue is

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-list] Mono 3.3.0 for ubuntu

2013-08-19 Thread Alan
these available though! Alan On 19 August 2013 13:25, yannick inizan inizan.yann...@gmail.com wrote: 'nevermind', this installation of mono on x64 can't find /usr/bin/mono do not install, please :) 2013/8/19 yannick inizan inizan.yann...@gmail.com mono-devel requires an updated version

Re: [Mono-list] string equals method

2013-05-22 Thread Alan
If you look at that source you cannot contribute to mono. The licenses are not compatible. Alan On 21 May 2013 19:00, Daniel Lo Nigro li...@dan.cx wrote: The .NET question is easy to answer by using Reflector/ILSpy/or similar. The source code for String is probably in the SSCLI source which

Re: [Mono-list] Packaging mono and monodevelop

2013-05-22 Thread Alan
for a while and no-one has noticed. Thanks for bringing this to our attention. You can of course always checkout the corresponding tag from git and compile it. I'm unsure what dependency is missing which causes MonoDevelop 4.0.8 to not compile. Could you elaborate on the issue? Alan On 21 May 2013 18

Re: [Mono-list] What is current status of GTK#

2013-05-07 Thread Alan
is an opensource effort and most of the work has been done. There are a few summer of code proposals to work on it, so if one of them is accepted it's possible it'll be finished in the next few months. However anyone is free to contribute too! Alan On 7 May 2013 13:36, Petr Bena benap...@gmail.com

Re: [Mono-list] Help debugging program failing randomly

2013-04-08 Thread Alan
it to your email in some way? Alan On 8 April 2013 08:42, Ian Norton ian.norton-bad...@thales-esecurity.comwrote: I'd be sure to check your struct packing and call conventions properly. And perhaps be sure that you aren't passing in any ref System.String instead of StringBuilders Ian On Mon, Apr

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-list] Autofac 3.0.1 on Mono 3.0.5

2013-03-01 Thread Alan
This should be fixed by updating your mono to 3.0.6 or higher. Thanks, Alan On 27 February 2013 13:34, Erik Schierboom e.schierb...@uci.ru.nl wrote: I have been trying to get Autofac 3.0.1 working on Mono, but have so far been unsuccessful. When I try to run an application that references

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-list] Which latest version of mono is stable?

2013-02-20 Thread Alan
2.10.11 is the latest stable release. The 3.x series is currently in beta but will hopefully become stable in the next few weeks. Alan On 14 February 2013 00:33, xplicit s...@ngs.ru wrote: I've posted a bug about mono 2.10 crashing instead of throwing OutOfMemoryException and got an answer

Re: [Mono-list] Sockets don't work

2013-02-14 Thread Alan
Are there any firewalls in the way? Can you telnet to the port? Alan On 14 February 2013 08:10, acrym soreri...@gmail.com wrote: Good to know, but it didn't help. I tried just connecting on port 4530 and it didn't work. -- View this message in context: http://mono.1490590.n4.nabble.com

Re: [Mono-list] How consistent are exceptions?

2013-02-13 Thread Alan
This approach will not work. You may not get an exception, you may just end up looping forever inside the dictionary. This is not a theoretical issue, it is something which does happen in the wild when you mutate a dictionary while iterating it. Alan On 13 February 2013 16:08, edward.harvey.mono

Re: [Mono-list] How consistent are exceptions?

2013-02-13 Thread Alan
. Finally, you can use locking and hope for the best. You could do something like https://gist.github.com/alanmcgovern/e7fb05c07d6bb84b2595 Alan On 13 February 2013 21:01, edward.harvey.mono edward.harvey.m...@clevertrove.com wrote: From: Alan [mailto:alan.mcgov...@gmail.com] This approach

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-list] Monodevelop Build fails where Add Reference to Project

2013-01-24 Thread Alan
the build configuration inside the IDE. Alan On 18 January 2013 23:07, Alberto León leontis...@gmail.com wrote: Thanks Alan. This solved my problem. I surprised because one person expects that an IDE should do these things automatically. Is a bug in MonoDevelop or is a bug only in Linux Mint

Re: [Mono-list] Why is mono news unaccessible?

2013-01-18 Thread Alan
It works for me now. Either it was fixed when you emailed or it's being blocked for you by something outside of xamarins control. Alan On 15 January 2013 20:21, xplicit s...@ngs.ru wrote: Why is news.mono-project.com unaccessible? I get a message http://news.mono-project.com/ is marked private

Re: [Mono-list] Essential Ubuntu packages?

2013-01-03 Thread Alan
/effective option or supply a list of the packages your users will have to install and tell them to install them first. Alan On 3 January 2013 19:42, mickeyf mic...@thesweetoasis.com wrote: Yes of course, but... If I've written the program myself I know which assemblies I need. What I don't know

Re: [Mono-list] Essential Ubuntu packages?

2013-01-03 Thread Alan
apt-file seems to do it: http://www.debianhelp.co.uk/findfile.htm . I'm not too familiar with apt so there may be a better option than that. I just found it with a quick google. Alan On 3 January 2013 21:14, mickeyf mic...@thesweetoasis.com wrote: Alan McGovern wrote You need ...specify

Re: [Mono-list] App: Cross Platform Programming

2012-12-16 Thread Alan
will be shareable. Large applications can see about 80% code sharing. http://praeclarum.org/post/15789866032/icircuit-code-reuse-part-trois. Alan Sorry this is not cross platform programming. I need Help to understand mono Please, help me. Thank you -- View this message in context

Re: [Mono-list] App: Cross Platform Programming

2012-12-16 Thread Alan
code (as compared to interpreted javascript) as well as the ability to use the actual native UI elements to create an actual native UI which conforms to the users expectations. Those pro's outweigh the cons of having to create a UI for each platform for the vast majority of applications. Alan i am

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-list] Why do I get these warnings? (Lots of them)

2012-09-25 Thread Alan
The simplest way to get rid of them is to invoke xbuild with 'quiet' verbosity instead of the default of 'normal'. Alan On 26 September 2012 01:28, efontana e...@fontanas.net wrote: I just picked this one at random, It seems that whenever I use xbuild I get lots of (similar) warnings like

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-list] GTKsharp 3

2012-09-18 Thread Alan
fixed or we have workarounds for everything now. The latest code can be found here I believe: https://github.com/andreiagaita/bindinator Alan On 13 September 2012 09:55, Andres G. Aragoneses kno...@gmail.com wrote: This is the wrong mailing list to talk about this. There is a gtk-sharp mailing

Re: [Mono-list] Mono compilation error when using 64 bit platform: Error CS0016: Could not write to file `test', cause: AMD64 (CS0016)

2012-09-18 Thread Alan
.NET runtime if mono itself is 32bit and a 64bit .NET runtime if mono itself is 64bit. It doesn't matter if the .NET assembly itself has been compiled as '32bit only' or '64bit only'. Also, this issue may be fixed if you update to Mono 2.10.9 or 2.10.10. Alan On 18 September 2012 18:38, matthieu

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-list] Is still Mono multiplatform?

2012-07-31 Thread Alan
Can you ensure that you set the assembly to be 32bit only. The odds are you are starting a 64bit process and the Gtk binaries can only be loaded in a 32bit process. Alan On 31 July 2012 07:58, Ian Norton ian.norton-bad...@thales-esecurity.com wrote: On Tue, Jul 31, 2012 at 12:19:52PM +0100

Re: [Mono-list] Entity Framework goes to opensource

2012-07-27 Thread Alan
We have already cloned this into the Mono organisations github repository: http://github.com/mono/entityframework Alan On 27 July 2012 19:13, Alessandro Binhara binh...@interopmix.com.br wrote: http://entityframework.codeplex.com/ ___ Mono-list

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-list] I'd like to use Mono.CSharp.Evaluator.Run(...) from several platforms

2012-05-07 Thread Alan
It may not be possible to run it on iOS due to limitations of the operating system. You will be constrained by these limitations, some of which are imposed by Apple: http://docs.xamarin.com/ios/about/limitations Alan On 7 May 2012 23:59, Andres G. Aragoneses kno...@gmail.com wrote: AN, yes you

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-list] Problem with Mono.Addins

2012-03-29 Thread Alan
Hi, You need to clear an ExtensionPoint so that Extensions can use it. See http://www.mono-project.com/Introduction_to_Mono.Addins#A_simple_example Alan On 29 March 2012 16:51, Joonu joonu.tho...@polarisft.com wrote: Hi, I am trying to run the sample HelloWorldWithManifest.sln program

Re: [Mono-list] Problem with Mono.Addins

2012-03-29 Thread Alan
adding the complexity of loading separate assemblies. Alan On 29 March 2012 20:09, Joonu joonu.tho...@polarisft.com wrote: clear an ExtensionPoint? Sorry if I sound dumb, but what exactly is that? Before I forget, thanks a lot for taking the time and effort to help me out! Joonu -- View

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-list] Mono and Managed C++ ? Worth the effort ?

2012-02-07 Thread Alan
a C++/CLI assembly which can be loaded by linux/macos/whatever (again, not supported) and also add support to mono for loading these assemblies (so far only available on windows). So in short, it's a lot of work and not possible currently. Alan On 7 February 2012 14:02, Slide slide.o

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-list] Timmer issue

2012-01-19 Thread Alan
Is your application multithreaded? Alan On 19 January 2012 00:50, Alphawolf1988 alphawolf1...@googlemail.comwrote: I have an issue with a timer. Has someone any idea why this is thrown? http://mono.1490590.n4.nabble.com/file/n4308764/Exception.png Christian Winkel -- View this message

Re: [Mono-list] Timmer issue

2012-01-19 Thread Alan
re-adding mono-list to the email... On 19 January 2012 16:17, Alan alan.mcgov...@gmail.com wrote: Your app is not threadsafe and the non-deterministic behaviour is due to a race condition. It is impossible to diagnose it from a snippet like this. The odds are high that one thread

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-list] Is OS/X case-sensitive?

2011-12-20 Thread Alan
xbuild is a separate program and will not be affected by any changes in MD. If it's not doing case changes properly then it'd be worth filing a bug against it. Alan On 20 December 2011 05:34, Abe Gillespie abe.gilles...@gmail.com wrote: http://monodevelop.com/Download/Release_Notes

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-list] Mono heapshot profiler woes

2011-11-07 Thread Alan
or to provide a binary which can be used to diagnose the issue. A crash as reliable as you describe should be relatively easy to diagnose once we have a way to reproduce it. Alan On 6 November 2011 23:20, Nicholas Frechette zeno...@gmail.com wrote: Hi, I just tried without sgen. There is no crash

Re: [Mono-list] Using mono aot / aot-full compilation: nothing appears to happen?

2011-11-07 Thread Alan
a self contained app bundle, there are others. Alan On 7 November 2011 19:57, applepi chrisdd...@gmail.com wrote: Robert Jordan wrote: On 07.11.2011 19:34, applepi wrote: I'd not seen mkbundle. I'll have to look into that as well.. this is going into proprietary code

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

Re: [Mono-list] Limit Memory Usage of Mono

2011-11-02 Thread Alan
be useful to limit the available memory for a process. Alan On 2 November 2011 17:45, Nicolas Antoniazzi nicolas.antonia...@gmail.comwrote: Is there a way to limit the max memory usage of mono ? In other languages, like java or php, there are options like -Xmx for Java or -memory_limit for Php

Re: [Mono-list] mono does not work with http://www.ritzpix.com/prints.aspx

2011-11-01 Thread Alan
I've no idea where Novell host moonlight packages, but moonlight was targeting Silverlight 4. If you can find the old builds from May 2011 you'll have the most likely chance of it working. However do bear in mind that full support for SL 4 was never completed. Alan On 31 October 2011 22:29, Abe

[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

[Mono-list] 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-list maillist - Mono-list@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-list

Re: [Mono-list] newbie - understanding profiler data

2011-09-01 Thread Alan
You're misunderstanding. That's not the amount of memory being consumed at any single instance in time. That's the total amount allocated since app startup. Therefore the longer your app runs, the bigger all those numbers become. Alan. On 1 Sep 2011 00:59, pjsmith pjsm...@mtgsy.net wrote: I

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-list] heapshot output is blank

2011-08-28 Thread Alan
You need to use the sgen garbage collector. Alan On 25 August 2011 14:40, James Jeffers jjeff...@adzerk.com wrote: When I generate the report from a mono application, my heapshot summary is always blank. Heap shot 391 at 709.653 secs: size: 0, object count: 0, class count: 0, roots: 0

Re: [Mono-list] Mono Project: Next Steps

2011-07-07 Thread Alan
A quick look at revision 1 in git will show the very very first commit to mono :) all the history is there. Alan On 7 Jul 2011 12:26, Daniel Morgan monodanm...@yahoo.com wrote: I'm not sure if git contains all the history all the way back to the beginning when the mono repository originally

Re: [Mono-list] Compile Moonlight Assemblies

2011-05-25 Thread Alan
Those aren't the moonlight assemblies. Those need to be tuned and signed first. The only way to get the actual moonlight assemblies is to build moonlight itself. Building mono is not enough. Alan. On 26 May 2011 01:15, Abe Gillespie abe.gilles...@gmail.com wrote: Nm ... I found them in mcs

Re: [Mono-list] Link against a DLL? (System.TypeLoadException)

2011-05-23 Thread Alan
There's no need to put anything into the GAC. If both assemblies are in the same directory it should work fine. Are the assemblies still in the same directory when you run the application? 2011/5/23 Jacek Rużyczka stacheldr...@interia.pl: Am Montag 23 Mai 2011, 09:58:34 schrieb Doug: I'm having

Re: [Mono-list] embedding mono and returning GList

2011-05-22 Thread Alan
Print out the value of the 'Handle' property in your c# code before the method returns and then print the value you get in native after you unbox. If they're not the same value you're done something wrong. Give that a shot and see what happens. Maybe it'll help you diagnose the issue. Alan On 22

Re: [Mono-list] Suitability of Mono

2011-05-20 Thread Alan
application on another platform. Some of these can be detected using Moma. A more detailed writeup can be seen here: http://www.mono-project.com/Guide:_Porting_Winforms_Applications Alan. On Fri, May 20, 2011 at 1:29 PM, Stifu st...@free.fr wrote: Hi, How about trying your .NET app with Mono

Re: [Mono-list] ubuntu support

2011-05-17 Thread Alan
) simply due to the huge effort this would require. It'd take far longer than doing all the opensuse, windows and mac packages which they take care of. Jo and Mirco will get you a modern mono as fast as is humanly possible. If it's not fast enough, I'm sure they'd welcome help :) Alan On Tue, May 17

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-list] Using Windows DLL in Linux

2011-03-22 Thread Alan
% of cases. So that's only a problem if it doesn't work in your particular case. In other words, it's quite likely it'll work just fine. Alan. On Tue, Mar 22, 2011 at 12:55 PM, Stifu st...@free.fr wrote: I meant ReceivedBytesThreshold *property*, but whatever. :) Stifu wrote: It might still work

  1   2   3   4   5   6   >